summaryrefslogtreecommitdiff
path: root/lib/matrix_app_service/client_behaviour.ex
diff options
context:
space:
mode:
authorPierre de Lacroix <pierre@pdelacroix.com>2021-04-24 20:48:32 +0200
committerPierre de Lacroix <pierre@pdelacroix.com>2021-04-24 20:48:32 +0200
commitb0a22bd4118647b0a4aab155820078b652384761 (patch)
tree08aeec7e09705bbc66c094051ebc73695f5069c0 /lib/matrix_app_service/client_behaviour.ex
parentfix missing application_service client parameter (diff)
add Client.join temporary wrapper
Diffstat (limited to 'lib/matrix_app_service/client_behaviour.ex')
-rw-r--r--lib/matrix_app_service/client_behaviour.ex1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/matrix_app_service/client_behaviour.ex b/lib/matrix_app_service/client_behaviour.ex
index 8f3910b..7a1f7fe 100644
--- a/lib/matrix_app_service/client_behaviour.ex
+++ b/lib/matrix_app_service/client_behaviour.ex
@@ -31,4 +31,5 @@ defmodule MatrixAppService.ClientBehaviour do
@callback get_profile(Polyjuice.Client.LowLevel.t(), String.t()) :: {:ok, map()} | any
@callback get_data(Polyjuice.Client.LowLevel.t(), String.t(), String.t()) :: {:ok, map()} | any
@callback put_displayname(Polyjuice.Client.LowLevel.t(), String.t(), String.t()) :: :ok | any
+ @callback join(Polyjuice.Client.LowLevel.t(), String.t()) :: :ok | any
end