10 lines
359 B
Python
10 lines
359 B
Python
from .user import User
|
|
from .message import Message
|
|
from .login import Login
|
|
|
|
'''
|
|
The 'models' package contains the schematics for the API body structures. In more detail:
|
|
- 'Login' model is used for the auth/login endpoint
|
|
- 'User' model is used for the auto/signup and users endpoints
|
|
- 'Message' model is used for the messages/send endpoint
|
|
''' |