fusenapi/product/internal/config/config.go

13 lines
180 B
Go
Raw Normal View History

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