Files
kittycad.py/kittycad/models/account_provider.py

10 lines
164 B
Python
Raw Normal View History

from enum import Enum
class AccountProvider(str, Enum):
GOOGLE = 'google'
GITHUB = 'github'
def __str__(self) -> str:
return str(self.value)