go-common/app/interface/main/esports/service/service_test.go
2019-04-22 18:49:16 +08:00

29 lines
361 B
Go

package service
import (
"flag"
"path/filepath"
"time"
"go-common/app/interface/main/esports/conf"
)
var (
svr *Service
)
func init() {
dir, _ := filepath.Abs("../cmd/esports-test.toml")
flag.Set("conf", dir)
conf.Init()
svr = New(conf.Conf)
time.Sleep(time.Second)
}
func WithService(f func(s *Service)) func() {
return func() {
f(svr)
}
}