main
 1package dto
 2
 3type GrantType int
 4
 5const (
 6	AuthorizationCode GrantType = iota
 7	Implicit
 8	Password
 9	ClientCredentials
10	RefreshToken
11	JWTBearer
12	SAML2Bearer
13)