NoteServicesAPI / app /models /enums.py
bichnhan2701's picture
Update note services logic
7402e0f
raw
history blame
211 Bytes
from enum import Enum
class NoteType(str, Enum):
audio = "audio"
text = "text"
class NoteStatus(str, Enum):
created = "created"
processing = "processing"
ready = "ready"
error = "error"