You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
840 B
44 lines
840 B
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) |
|
} |
|
}
|
|
|