initial commit - LeDiscord plateforme des copains
This commit is contained in:
21
backend/schemas/__init__.py
Normal file
21
backend/schemas/__init__.py
Normal file
@@ -0,0 +1,21 @@
|
||||
from .user import UserCreate, UserUpdate, UserResponse, UserLogin, Token
|
||||
from .event import EventCreate, EventUpdate, EventResponse, ParticipationUpdate
|
||||
from .album import AlbumCreate, AlbumUpdate, AlbumResponse, MediaResponse, MediaLikeResponse
|
||||
from .post import PostCreate, PostUpdate, PostResponse
|
||||
from .vlog import VlogCreate, VlogUpdate, VlogResponse, VlogCommentCreate, VlogLikeResponse, VlogCommentResponse
|
||||
from .notification import NotificationResponse
|
||||
from .settings import SystemSettingCreate, SystemSettingUpdate, SystemSettingResponse, SettingsCategoryResponse, UploadLimitsResponse
|
||||
from .information import InformationCreate, InformationUpdate, InformationResponse
|
||||
from .ticket import TicketCreate, TicketUpdate, TicketResponse, TicketAdminUpdate
|
||||
|
||||
__all__ = [
|
||||
"UserCreate", "UserUpdate", "UserResponse", "UserLogin", "Token",
|
||||
"EventCreate", "EventUpdate", "EventResponse", "ParticipationUpdate",
|
||||
"AlbumCreate", "AlbumUpdate", "AlbumResponse", "MediaResponse", "MediaLikeResponse",
|
||||
"PostCreate", "PostUpdate", "PostResponse",
|
||||
"VlogCreate", "VlogUpdate", "VlogResponse", "VlogCommentCreate", "VlogLikeResponse", "VlogCommentResponse",
|
||||
"NotificationResponse",
|
||||
"SystemSettingCreate", "SystemSettingUpdate", "SystemSettingResponse", "SettingsCategoryResponse", "UploadLimitsResponse",
|
||||
"InformationCreate", "InformationUpdate", "InformationResponse",
|
||||
"TicketCreate", "TicketUpdate", "TicketResponse", "TicketAdminUpdate"
|
||||
]
|
||||
Reference in New Issue
Block a user