Source code for pydelfini.delfini_core.models.auth_provider_login_provider
from enum import Enum
[docs]
class AuthProviderLoginProvider(str, Enum):
GITHUB = "github"
GOOGLE = "google"
def __str__(self) -> str:
return str(self.value)