File size: 277 Bytes
b7a7f32
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from cruds.base import CRUDBase
from models.department import Department
from schemas.department import DepartmentCreate, DepartmentUpdate


class CRUDDepartment(CRUDBase[Department, DepartmentCreate, DepartmentUpdate]):
    pass


crud_department = CRUDDepartment(Department)