Add Enum with Tags for consistand naming
This commit is contained in:
@@ -9,6 +9,7 @@ __all__ = [
|
||||
"DocumentedStrEnum",
|
||||
"DocumentedIntFlag",
|
||||
"auto_enum",
|
||||
"ApiTags",
|
||||
"BaseSQLModel",
|
||||
"Message",
|
||||
]
|
||||
@@ -34,6 +35,21 @@ class DocumentedIntFlag(IntFlag):
|
||||
pass
|
||||
|
||||
|
||||
# #############################################################################
|
||||
|
||||
|
||||
class ApiTags(DocumentedStrEnum):
|
||||
LOGIN = "Login"
|
||||
USERS = "Users"
|
||||
UTILS = "Utils"
|
||||
PRIVATE = "Private"
|
||||
|
||||
APIKEY = "APIKey"
|
||||
|
||||
EVENTS = "Events"
|
||||
TEAMS = "Teams"
|
||||
|
||||
|
||||
# endregion
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user