fusenapi/server/home-user-auth/internal/config/config.go
2023-07-24 19:17:02 +08:00

20 lines
251 B
Go

package config
import (
"fusenapi/server/home-user-auth/internal/types"
"github.com/zeromicro/go-zero/rest"
)
type Config struct {
rest.RestConf
SourceMysql string
Auth types.Auth
MainAddress string
Stripe struct {
SK string
}
}