This commit is contained in:
laodaming
2023-06-20 16:38:03 +08:00
parent 0f4ae5164b
commit 73eef005ec
9 changed files with 670 additions and 0 deletions

View File

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