You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- from Config.DB.Models import Users
- from Config.DB.Schemas import UsersSchema
-
- class Tables:
- Users = Users
- # ADD REST OF THE TABLES HERE
-
- class Schemas:
- User = UsersSchema()
- Users = UsersSchema(many=True)
- # ADD REST OF THE SCHEMAS HERE
|