fusenapi/server/shopping-cart/internal/config/config.go
2023-09-13 17:33:58 +08:00

14 lines
224 B
Go

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