Files
History_Api/pkg/constants/provider.go
2026-03-30 16:13:00 +07:00

15 lines
285 B
Go

package constants
type ProviderType string
const (
GoogleProvider ProviderType = "google"
GithubProvider ProviderType = "github"
FacebookProvider ProviderType = "facebook"
LocalProvider ProviderType = "local"
)
func (p ProviderType) String() string {
return string(p)
}