Add schemas

This commit is contained in:
sHa
2024-03-22 00:49:17 +02:00
parent ca6c933fd9
commit 6b80e1a383
5 changed files with 93 additions and 0 deletions

11
schema/methods.py Normal file
View File

@@ -0,0 +1,11 @@
from enum import Enum
class Methods(str, Enum):
GET = "GET"
POST = "POST"
PUT = "PUT"
DELETE = "DELETE"
PATCH = "PATCH"
OPTIONS = "OPTIONS"
HEAD = "HEAD"