ISM ISM ISM ISM ISM
This commit is contained in:
parent
ff28e23636
commit
e9c64bb56a
4
main.go
4
main.go
|
@ -42,8 +42,8 @@ type InterServiceMessage struct {
|
||||||
|
|
||||||
// NewServiceInitializationInformation creates a new ServiceInitializationInformation and is only ever meant to be called
|
// NewServiceInitializationInformation creates a new ServiceInitializationInformation and is only ever meant to be called
|
||||||
// by fulgens or a compliant implementation of fulgens.
|
// by fulgens or a compliant implementation of fulgens.
|
||||||
func NewServiceInitializationInformation(domain *string, outbox chan<- InterServiceMessage, inbox <-chan InterServiceMessage, router *chi.Mux, configuration map[string]interface{}, resourceDir fs.FS) ServiceInitializationInformation {
|
func NewServiceInitializationInformation(domain *string, outbox chan<- InterServiceMessage, inbox <-chan InterServiceMessage, router *chi.Mux, configuration map[string]interface{}, resourceDir fs.FS) *ServiceInitializationInformation {
|
||||||
return ServiceInitializationInformation{
|
return &ServiceInitializationInformation{
|
||||||
Domain: domain,
|
Domain: domain,
|
||||||
Outbox: outbox,
|
Outbox: outbox,
|
||||||
inbox: inbox,
|
inbox: inbox,
|
||||||
|
|
Loading…
Reference in New Issue