11
This commit is contained in:
15
app/schemas/__init__.py
Normal file
15
app/schemas/__init__.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from app.schemas.auth import (
|
||||
LoginRequest,
|
||||
RegisterRequest,
|
||||
TokenResponse,
|
||||
UserPublic,
|
||||
)
|
||||
from app.schemas.common import ApiResponse
|
||||
|
||||
__all__ = [
|
||||
"ApiResponse",
|
||||
"LoginRequest",
|
||||
"RegisterRequest",
|
||||
"TokenResponse",
|
||||
"UserPublic",
|
||||
]
|
||||
Reference in New Issue
Block a user