backend/pkg/member/domain/config/config.go

20 lines
243 B
Go
Raw Permalink Normal View History

2025-10-01 16:30:27 +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
}
}