fusenapi/server/product/internal/config/config.go
2023-06-08 10:51:56 +08:00

13 lines
180 B
Go

package config
import (
"fusenapi/product/internal/types"
"github.com/zeromicro/go-zero/rest"
)
type Config struct {
rest.RestConf
DataSource string
Auth types.Auth
}