fix: Fix issue #1810 (#1811)

* Fix #1810

* Remove go embed

* Format code

* Remove useless code

Co-authored-by: anqiansong <anqiansong@bytedance.com>
This commit is contained in:
anqiansong
2022-04-21 15:22:43 +08:00
committed by GitHub
parent 2cdff97934
commit 305587aa81
8 changed files with 49 additions and 1 deletions

View File

@@ -32,6 +32,10 @@ func TsCommand(c *cli.Context) error {
return err
}
if err := api.Validate(); err != nil {
return err
}
api.Service = api.Service.JoinPrefix()
logx.Must(pathx.MkdirIfNotExist(dir))
logx.Must(genHandler(dir, webAPI, caller, api, unwrapAPI))