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.

11 rivejä
254 B

  1. from Config.DB.Models import Users
  2. from Config.DB.Schemas import UsersSchema
  3. class Tables:
  4. Users = Users
  5. # ADD REST OF THE TABLES HERE
  6. class Schemas:
  7. User = UsersSchema()
  8. Users = UsersSchema(many=True)
  9. # ADD REST OF THE SCHEMAS HERE