Discord Bot Management

{{ bot.user }}

ID: {{ bot.user.id }}

Command Prefix: {{ command_prefix }}

Shard Count: {{ bot.shard_count }}

Command Code

{% for cmd in enabled_commands %}

{{ cmd }}

Docstring: {{ cmd._callback.__doc__ }}

{% set code_str = getsource(cmd._callback).replace("`", "\`") %}
{% endfor %} {% for cmd in disabled_commands %}

{{ cmd }}

Docstring: {{ cmd._callback.__doc__ }}

{% set code_str = getsource(cmd._callback).replace("`", "\`") %}
{% endfor %}