feat: service
continuous-integration/drone/push Build was killed

This commit is contained in:
2022-01-11 04:00:39 +08:00
parent 35119f2003
commit baa0eb8db2
22 changed files with 450 additions and 34 deletions
@@ -0,0 +1,17 @@
package config
import "git.icechen.cn/monorepo/backend/pkg/config"
type Cfg struct {
LarkAppID string `json:"lark_app_id"`
LarkAppSecret string `json:"lark_app_secret"`
}
var Config Cfg
func init() {
err := config.GetConfig(&Config)
if err != nil {
panic(err)
}
}