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

20 lines
305 B
Go

package service
import (
"flag"
"path/filepath"
"go-common/app/job/main/search/conf"
)
func WithService(f func(s *Service)) func() {
return func() {
dir, _ := filepath.Abs("../goconvey.toml")
flag.Set("conf", dir)
conf.Init()
s := New(conf.Conf)
// s.dao = dao.New(conf.Conf)
f(s)
}
}