2016-08-08 11:34:07 -04:00
|
|
|
import synapse.api.auth
|
2016-07-19 05:21:42 -04:00
|
|
|
import synapse.handlers
|
|
|
|
import synapse.handlers.auth
|
|
|
|
import synapse.handlers.device
|
2016-08-01 13:02:07 -04:00
|
|
|
import synapse.handlers.e2e_keys
|
2016-07-19 05:21:42 -04:00
|
|
|
import synapse.storage
|
|
|
|
import synapse.state
|
|
|
|
|
|
|
|
class HomeServer(object):
|
2016-08-08 11:34:07 -04:00
|
|
|
def get_auth(self) -> synapse.api.auth.Auth:
|
|
|
|
pass
|
|
|
|
|
2016-07-19 05:21:42 -04:00
|
|
|
def get_auth_handler(self) -> synapse.handlers.auth.AuthHandler:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def get_datastore(self) -> synapse.storage.DataStore:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def get_device_handler(self) -> synapse.handlers.device.DeviceHandler:
|
|
|
|
pass
|
|
|
|
|
2016-08-01 13:02:07 -04:00
|
|
|
def get_e2e_keys_handler(self) -> synapse.handlers.e2e_keys.E2eKeysHandler:
|
|
|
|
pass
|
|
|
|
|
2016-07-19 05:21:42 -04:00
|
|
|
def get_handlers(self) -> synapse.handlers.Handlers:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def get_state_handler(self) -> synapse.state.StateHandler:
|
|
|
|
pass
|