From 3392d67c29d39c88d0e16188164063ad13ff9ad2 Mon Sep 17 00:00:00 2001 From: trueold89 Date: Wed, 29 May 2024 19:57:55 +0300 Subject: [PATCH] Init User class - Declared move_to method --- hellmbot/User.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 hellmbot/User.py diff --git a/hellmbot/User.py b/hellmbot/User.py new file mode 100644 index 0000000..c1b84fb --- /dev/null +++ b/hellmbot/User.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- + +################### +# Actions on user # +################### + +class User(object): + + def __init__(self, user_id: int) -> None: + self.user = user_id + + def move_to(self, channel_id: int) -> None: + """ + Moves the user to the specified voice channel + + :param channel_id: discord id of voice channel + """ + pass