Refactors Project for More Declarative Package Name

This commit is contained in:
2023-08-18 03:25:30 -03:00
parent 2bd7ae10b9
commit f3e77889a2
29 changed files with 108 additions and 80 deletions

View File

View File

@@ -0,0 +1,6 @@
from enum import Enum
class FileType(Enum):
PNG = "png"
JPEG = "jpeg"

View File

@@ -0,0 +1,5 @@
from enum import Enum
class StorageType(Enum):
S3_STORAGE = "s3"