Files

23 lines
404 B
Python

"""Модуль моделей для базы данных"""
from .author import Author
from .book import Book
from .genre import Genre
from .role import Role
from .user import User
from .links import (
AuthorBookLink,
GenreBookLink,
UserRoleLink
)
__all__ = [
"Author",
"Book",
"Genre",
"Role",
"User",
"AuthorBookLink",
"GenreBookLink",
"UserRoleLink",
]