Files

12 lines
214 B
Go

package authentication
type TokenType string
const AccessToken = "Access"
const RefreshToken = "Refresh"
type AuthCfg struct {
AtSecretKey string `yaml:"atSecretKey"`
RtSecretKey string `yaml:"rtSecretKey"`
}