20 lines
243 B
Go
20 lines
243 B
Go
|
package config
|
||
|
|
||
|
type Config struct {
|
||
|
// 密碼加密層數
|
||
|
Bcrypt struct {
|
||
|
Cost int
|
||
|
}
|
||
|
|
||
|
GoogleAuth struct {
|
||
|
ClientID string
|
||
|
AuthURL string
|
||
|
}
|
||
|
|
||
|
LineAuth struct {
|
||
|
ClientID string
|
||
|
ClientSecret string
|
||
|
RedirectURI string
|
||
|
}
|
||
|
}
|