tsunami / src /tsuwave /api /__init__.py
Gitdeeper4's picture
رفع جميع ملفات TSU-WAVE مع YAML
12834b7
"""TSU-WAVE API Module - REST and WebSocket endpoints"""
from .main import app
from .endpoints import events, parameters, forecast, alerts
from .websocket import websocket_handler
__all__ = ['app', 'events', 'parameters', 'forecast', 'alerts', 'websocket_handler']