Metadata-Version: 2.1
Name: mentord
Version: 1.1
Summary: Library for discord self bots.
Description-Content-Type: text/markdown


      ### Example use:
```python
User_client: Client = Client() 
User_client.connect(token='YOUR TOKEN')
```

### Use decorators:
```python
@User_client.on_message
def client_wait_message(message: Message):
    print('new message!')
```
      
