Split websocket package in multiple sub-package. Split handlers.py in public_channels_handler.py and authenticated_channels_handler.py. Rename files attaining to new conventions.

This commit is contained in:
Davide Casale
2023-02-13 19:09:38 +01:00
parent 6a7577f98b
commit f0f150cec2
11 changed files with 117 additions and 91 deletions

View File

@@ -0,0 +1,3 @@
from .public_channels_handler import PublicChannelsHandler
from .authenticated_channels_handler import AuthenticatedChannelsHandler
NAME = "handlers"