1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package history
- import (
- "context"
- "flag"
- "os"
- "go-common/app/interface/main/tv/conf"
- . "github.com/smartystreets/goconvey/convey"
- )
- var (
- d *Dao
- ctx = context.TODO()
- )
- func init() {
- //dir, _ := filepath.Abs("../../cmd/tv-interface.toml")
- //flag.Set("conf", dir)
- if os.Getenv("DEPLOY_ENV") != "" {
- flag.Set("app_id", "main.web-svr.tv-interface")
- flag.Set("conf_token", "07c1826c1f39df02a1411cdd6f455879")
- flag.Set("tree_id", "15326")
- flag.Set("conf_version", "docker-1")
- flag.Set("deploy_env", "uat")
- flag.Set("conf_host", "config.bilibili.co")
- flag.Set("conf_path", "/tmp")
- flag.Set("region", "sh")
- flag.Set("zone", "sh001")
- }
- flag.Parse()
- if err := conf.Init(); err != nil {
- panic(err)
- }
- d = New(conf.Conf)
- }
- func WithDao(f func(d *Dao)) func() {
- return func() {
- Reset(func() {})
- f(d)
- }
- }
|