aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.go b/main.go
index 9e3c6f3..62d971b 100644
--- a/main.go
+++ b/main.go
@@ -61,9 +61,9 @@ func main() {
var mainWg sync.WaitGroup
// // Internal CGI Servers
- cgiServers := cgi.NewServers(log, persister)
+ cgiServers := cgi.NewServers(log, persister, cfg)
mainWg.Add(1)
- go cgiServers.Start(cfg)
+ go cgiServers.Start()
// // External Http Server
writer := &zapio.Writer{Log: logger, Level: zap.DebugLevel}