go-common/app/interface/main/esports/service/service_test.go

29 lines
361 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
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)
}
}