mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-01 18:06:11 -04:00
Move SyncHandler out of the Handlers object
This commit is contained in:
parent
53e171f345
commit
f68eea808a
4 changed files with 11 additions and 9 deletions
|
@ -28,7 +28,6 @@ from .directory import DirectoryHandler
|
|||
from .typing import TypingNotificationHandler
|
||||
from .admin import AdminHandler
|
||||
from .appservice import ApplicationServicesHandler
|
||||
from .sync import SyncHandler
|
||||
from .auth import AuthHandler
|
||||
from .identity import IdentityHandler
|
||||
from .receipts import ReceiptsHandler
|
||||
|
@ -65,7 +64,6 @@ class Handlers(object):
|
|||
as_api=asapi
|
||||
)
|
||||
)
|
||||
self.sync_handler = SyncHandler(hs)
|
||||
self.auth_handler = AuthHandler(hs)
|
||||
self.identity_handler = IdentityHandler(hs)
|
||||
self.search_handler = SearchHandler(hs)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue