app-cloudep-member-server/pkg/domain/config/config.go

20 lines
243 B
Go
Raw Permalink Normal View History

2024-12-30 03:58:14 +00:00
package config
type Config struct {
// 密碼加密層數
Bcrypt struct {
Cost int
}
GoogleAuth struct {
ClientID string
AuthURL string
}
LineAuth struct {
ClientID string
ClientSecret string
RedirectURI string
}
}