Introduced groups and added all related endpoints
All checks were successful
AWS Deploy on Push / build (push) Successful in 7m39s

This commit is contained in:
2025-06-10 23:02:46 -05:00
parent 729eabf27f
commit b8ac25e301
15 changed files with 1563 additions and 213 deletions

View File

@@ -1,10 +1,13 @@
from .db import Base, ChannelDB, ChannelURL
from .db import Base, ChannelDB, ChannelURL, Group
from .schemas import (
ChannelCreate,
ChannelResponse,
ChannelUpdate,
ChannelURLCreate,
ChannelURLResponse,
GroupCreate,
GroupResponse,
GroupUpdate,
)
__all__ = [
@@ -16,4 +19,8 @@ __all__ = [
"ChannelURL",
"ChannelURLCreate",
"ChannelURLResponse",
"Group",
"GroupCreate",
"GroupResponse",
"GroupUpdate",
]