Fixed bug - Wrong data type: svcConfig
svcConfig service.Config => svcConfig *service.Config (It needed to be a pointer)
This commit is contained in:
parent
5b11934a1c
commit
f4000a325d
|
@ -110,7 +110,7 @@ var logger service.Logger
|
||||||
var stop chan struct{}
|
var stop chan struct{}
|
||||||
|
|
||||||
var srvc service.Service
|
var srvc service.Service
|
||||||
var svcConfig service.Config
|
var svcConfig *service.Config
|
||||||
|
|
||||||
type program struct{}
|
type program struct{}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue