13 lines
187 B
Go
Raw Normal View History

2023-06-01 15:32:28 +08:00
package config
2023-06-07 11:35:04 +08:00
import (
2023-06-08 11:03:20 +08:00
"fusenapi/server/product/internal/types"
2023-06-07 11:35:04 +08:00
"github.com/zeromicro/go-zero/rest"
)
2023-06-01 15:32:28 +08:00
type Config struct {
rest.RestConf
DataSource string
2023-06-07 11:35:04 +08:00
Auth types.Auth
2023-06-01 15:32:28 +08:00
}