|
|
@ -25,6 +25,8 @@ class ClientConfig(Config): |
|
|
|
The shard ID for the current client instance. |
|
|
|
shard_count : int |
|
|
|
The total count of shards running. |
|
|
|
guild_subscriptions : bool |
|
|
|
Whether to enable subscription events (e.g. presence and typing). |
|
|
|
max_reconnects : int |
|
|
|
The maximum number of connection retries to make before giving up (0 = never give up). |
|
|
|
log_level: str |
|
|
@ -42,6 +44,7 @@ class ClientConfig(Config): |
|
|
|
token = '' |
|
|
|
shard_id = 0 |
|
|
|
shard_count = 1 |
|
|
|
guild_subscriptions = True |
|
|
|
max_reconnects = 5 |
|
|
|
log_level = 'info' |
|
|
|
|
|
|
|