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
|
|
|
}
|