Files
iptv-manager-service/app/models/__init__.py
Stefano abb467749b
All checks were successful
AWS Deploy on Push / build (push) Successful in 2m17s
Implemented bulk upload by passing a json structure. Added delete all channels, groups and priorities
2025-06-12 18:49:20 -05:00

28 lines
509 B
Python

from .db import Base, ChannelDB, ChannelURL, Group, Priority
from .schemas import (
ChannelCreate,
ChannelResponse,
ChannelUpdate,
ChannelURLCreate,
ChannelURLResponse,
GroupCreate,
GroupResponse,
GroupUpdate,
)
__all__ = [
"Base",
"ChannelDB",
"ChannelCreate",
"ChannelUpdate",
"ChannelResponse",
"ChannelURL",
"ChannelURLCreate",
"ChannelURLResponse",
"Group",
"Priority",
"GroupCreate",
"GroupResponse",
"GroupUpdate",
]