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