9
kittycad/models/account_provider.py
Normal file
9
kittycad/models/account_provider.py
Normal file
@ -0,0 +1,9 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class AccountProvider(str, Enum):
|
||||
GOOGLE = 'google'
|
||||
GITHUB = 'github'
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
Reference in New Issue
Block a user