This commit is contained in:
Artem Tsyrulnikov
2025-12-16 15:13:33 +03:00
parent 18b30eaf7f
commit 23eb5ae13d
19 changed files with 115 additions and 126 deletions

View File

@@ -20,6 +20,7 @@ __all__ = (
'PurchasePlanStatus',
'PurchasePlanChannelStatus',
'Creative',
'replace_invite_link_with_tag',
'Placement',
'Post',
'Subscription',
@@ -52,17 +53,21 @@ __all__ = (
'TelegramChannelNotFound',
'CreativeNotFound',
'CreativeInUse',
'CreativeInviteLinkNotFound',
'CreativeMultipleInviteLinks',
'PlacementNotFound',
'UserByUsernameNotFound',
)
from .channel import Channel
from .creative import Creative, CreativeStatus
from .creative import Creative, CreativeStatus, replace_invite_link_with_tag
from .error import (
ChannelAlreadyExists,
ChannelNoAdminRights,
ChannelNotFound,
CreativeInUse,
CreativeInviteLinkNotFound,
CreativeMultipleInviteLinks,
CreativeNotFound,
LoginTokenAlreadyUsed,
LoginTokenExpired,