添加了通用的config.tpl

This commit is contained in:
eson
2023-06-21 16:46:25 +08:00
parent b27aaab6b6
commit 28cc8a19ba
9 changed files with 324 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package config
import (
"fusenapi/server/faq/internal/types"
"github.com/zeromicro/go-zero/rest"
)
type Config struct {
rest.RestConf
SourceMysql string
Auth types.Auth
}