10 lines
151 B
Python
10 lines
151 B
Python
from enum import Enum
|
|
|
|
|
|
class SchemaRetrieveLang(str, Enum):
|
|
EN = "en"
|
|
FR = "fr"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|