From 8cbdf346e289a633f75ed433ba003fbdb6eaf9df Mon Sep 17 00:00:00 2001 From: Jean-Marie Mineau Date: Sat, 2 Oct 2021 22:46:51 +0200 Subject: [PATCH] add Client class --- src/matrix_bot/client.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/matrix_bot/client.py diff --git a/src/matrix_bot/client.py b/src/matrix_bot/client.py new file mode 100644 index 0000000..6e8afe8 --- /dev/null +++ b/src/matrix_bot/client.py @@ -0,0 +1,12 @@ +""" +The Client class. +Connect to the matrix server and handle interactions with the server. +""" + + +class Client: + """ + Connect to the matrix server and handle interactions with the + server. + """ + pass