fusenapi/server/shopping-cart-confirmation/internal/config/config.go
2023-06-19 10:33:51 +08:00

14 lines
209 B
Go

package config
import (
"fusenapi/server/shopping-cart-confirmation/internal/types"
"github.com/zeromicro/go-zero/rest"
)
type Config struct {
rest.RestConf
SourceMysql string
Auth types.Auth
}