Remnawave_python-sdk/remnawave/controllers/__init__.py
Artem 3f0b5af2cf
Refactor tests for HWID, subscriptions, system, and users; add subscription request history functionality
- Restructured HWID tests into classes for better organization and clarity.
- Enhanced subscription tests to cover additional scenarios and improved assertions.
- Introduced new tests for system statistics and monitoring.
- Implemented CRUD operations for user management with comprehensive test coverage.
- Added new controllers and models for handling subscription request history.
- Created tests for subscription request history, including pagination and statistics.
- Improved error handling in tests to skip when exceptions occur.
2025-10-02 01:46:17 +02:00

54 lines
2.1 KiB
Python

from .api_tokens_management import APITokensManagementController
from .auth import AuthController
from .bandwidthstats import BandWidthStatsController
from .config_profiles import ConfigProfilesController
from .hosts import HostsController
from .hosts_bulk_actions import HostsBulkActionsController
from .hwid import HWIDUserController
from .inbounds import InboundsController
from .inbounds_bulk_actions import InboundsBulkActionsController
from .infra_billing import InfraBillingController
from .internal_squads import InternalSquadsController
from .keygen import KeygenController
from .nodes import NodesController
from .nodes_usage_history import NodesUsageHistoryController, NodesUserUsageHistoryController
from .subscription import SubscriptionController
from .subscriptions_controller import SubscriptionsController
from .subscriptions_settings import SubscriptionsSettingsController
from .subscriptions_template import SubscriptionsTemplateController
from .system import SystemController
from .users import UsersController
from .users_bulk_actions import UsersBulkActionsController
from .users_stats import UsersStatsController
from .webhooks import WebhookUtility
from .xray_config import XrayConfigController
from .subscriptions_request import SubscriptionRequestHistoryController
__all__ = [
"APITokensManagementController",
"AuthController",
"BandWidthStatsController",
"ConfigProfilesController",
"HostsController",
"HostsBulkActionsController",
"HWIDUserController",
"InboundsController",
"InboundsBulkActionsController",
"InfraBillingController",
"InternalSquadsController",
"KeygenController",
"NodesController",
"NodesUsageHistoryController",
"NodesUserUsageHistoryController",
"SubscriptionController",
"SubscriptionsController",
"SubscriptionsSettingsController",
"SubscriptionsTemplateController",
"SystemController",
"UsersController",
"UsersBulkActionsController",
"UsersStatsController",
"WebhookUtility",
"XrayConfigController",
"SubscriptionRequestHistoryController",
]