mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
10 lines
358 B
Python
10 lines
358 B
Python
"""Schemas package"""
|
|
from .employee import Employee, EmployeeCreate, EmployeeUpdate
|
|
from .request import Request, RequestCreate, RequestUpdate
|
|
from .auth import Token, TokenData, LoginCredentials
|
|
|
|
__all__ = [
|
|
'Employee', 'EmployeeCreate', 'EmployeeUpdate',
|
|
'Request', 'RequestCreate', 'RequestUpdate',
|
|
'Token', 'TokenData', 'LoginCredentials'
|
|
] |