Files
kittycad.py/kittycad/models/code_language.py
Jess Frazelle 9dc390a64d initial fixing
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2022-06-11 17:26:20 -07:00

12 lines
189 B
Python

from enum import Enum
class CodeLanguage(str, Enum):
GO = 'go'
RUST = 'rust'
PYTHON = 'python'
NODE = 'node'
def __str__(self) -> str:
return str(self.value)