app-cloudep-portal-api-gateway/internal/domain/const.go

19 lines
306 B
Go
Raw Normal View History

2024-08-26 06:36:58 +00:00
package domain
const (
DefaultCurrency = "NTD"
DefaultLanguage = "zh-tw"
DefaultGrantType = "client_credentials"
DefaultScope = "gateway"
)
type GrantType string
func (g GrantType) ToString() string {
return string(g)
}
const (
GrantTypeClientCredentials GrantType = "client_credentials"
)