all: implement router setup for merlin

This commit is contained in:
Cuong Manh Le
2023-05-13 11:58:56 +07:00
committed by Cuong Manh Le
parent 2c7d95bba2
commit a5443d5ca4
13 changed files with 565 additions and 20 deletions
+7
View File
@@ -0,0 +1,7 @@
package router
import "github.com/kardianos/service"
func newSysLogger(name string, errs chan<- error) (service.Logger, error) {
return service.ConsoleLogger, nil
}