Files
iptv-manager-service/app/models/__init__.py
Stefano c96ee307db
All checks were successful
AWS Deploy on Push / build (push) Successful in 1m8s
Moved channel URLs to channels_urls table. Create CRUD endpoints for new table.
2025-05-23 11:36:04 -05:00

4 lines
290 B
Python

from .db import Base, ChannelDB, ChannelURL
from .schemas import ChannelCreate, ChannelUpdate, ChannelResponse, ChannelURLCreate, ChannelURLResponse
__all__ = ["Base", "ChannelDB", "ChannelCreate", "ChannelUpdate", "ChannelResponse", "ChannelURL", "ChannelURLCreate", "ChannelURLResponse"]