This commit is contained in:
laodaming
2023-06-25 17:11:42 +08:00
parent 002ec9d292
commit d876884397
14 changed files with 602 additions and 5 deletions

View File

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