This commit is contained in:
eson
2023-07-17 19:43:43 +08:00
parent 73ce1e6db3
commit 4d9f14eb30
13 changed files with 398 additions and 39 deletions

View File

@@ -6,11 +6,19 @@ import (
"github.com/zeromicro/go-zero/rest"
)
type OAuth struct {
Name string `json:"name"`
Appid string `json:"appid"`
Secret string `json:"secret"`
}
type Config struct {
rest.RestConf
SourceMysql string
Auth types.Auth
OAuth []OAuth
Stripe struct {
SK string
}