fusenapi/home-user-auth/internal/config/config.go

14 lines
188 B
Go
Raw Normal View History

2023-05-31 10:33:02 +00:00
package config
2023-06-01 10:35:09 +00:00
import (
"fusenapi/home-user-auth/internal/types"
"github.com/zeromicro/go-zero/rest"
)
2023-05-31 10:33:02 +00:00
type Config struct {
rest.RestConf
2023-06-01 04:15:36 +00:00
DataSource string
2023-06-01 10:35:09 +00:00
Auth types.Auth
2023-05-31 10:33:02 +00:00
}