Files
History_Api/pkg/constants/provider.go
AzenKain ac90236022
All checks were successful
Build and Release / release (push) Successful in 1m15s
UPDATE: Project Module
2026-04-25 14:05:15 +07:00

15 lines
301 B
Go

package constants
type ProviderType string
const (
ProviderTypeGoogle ProviderType = "google"
ProviderTypeGithub ProviderType = "github"
ProviderTypeFacebook ProviderType = "facebook"
ProviderTypeLocal ProviderType = "local"
)
func (p ProviderType) String() string {
return string(p)
}