Files
kittycad.py/kittycad/models/account_provider.py
Jess Frazelle 67a03bdd03 update
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2022-07-05 15:33:51 -07:00

10 lines
164 B
Python

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