service_test.go 418 B

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