Init User class

- Declared move_to method
This commit is contained in:
trueold89 2024-05-29 19:57:55 +03:00
parent c808633cc8
commit 3392d67c29
Signed by: trueold89
GPG Key ID: C122E85DD49E6B30
1 changed files with 18 additions and 0 deletions

18
hellmbot/User.py Normal file
View File

@ -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