service_test.go 361 B

12345678910111213141516171819202122232425262728
  1. package service
  2. import (
  3. "flag"
  4. "path/filepath"
  5. "time"
  6. "go-common/app/interface/main/esports/conf"
  7. )
  8. var (
  9. svr *Service
  10. )
  11. func init() {
  12. dir, _ := filepath.Abs("../cmd/esports-test.toml")
  13. flag.Set("conf", dir)
  14. conf.Init()
  15. svr = New(conf.Conf)
  16. time.Sleep(time.Second)
  17. }
  18. func WithService(f func(s *Service)) func() {
  19. return func() {
  20. f(svr)
  21. }
  22. }