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