├── .dockerignore ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── lint.yaml │ └── status_embed.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── bot ├── __init__.py ├── __main__.py ├── cogs │ ├── __init__.py │ ├── automod │ │ ├── __init__.py │ │ └── filepaste.py │ ├── core │ │ ├── __init__.py │ │ ├── error_handler.py │ │ ├── help.py │ │ └── sudo.py │ ├── logging │ │ ├── __init__.py │ │ ├── join_log.py │ │ ├── member_log.py │ │ ├── message_log.py │ │ ├── mod_log.py │ │ ├── server_log.py │ │ └── voice_log.py │ ├── moderation │ │ ├── __init__.py │ │ ├── lock.py │ │ ├── slowmode.py │ │ └── strikes.py │ ├── setup │ │ ├── __init__.py │ │ ├── log_channels.py │ │ ├── permissions.py │ │ └── roles.py │ └── utility │ │ ├── __init__.py │ │ └── embeds.py ├── config.py ├── core │ ├── autoload.py │ └── bot.py ├── database │ ├── __init__.py │ ├── log_channels.py │ ├── permissions.py │ ├── roles.py │ └── strikes.py └── utils │ ├── audit_parse.py │ ├── converters.py │ ├── diff.py │ ├── pages.py │ ├── paste_upload.py │ ├── time.py │ └── timer.py ├── docker-compose.yml ├── poetry.lock ├── pyproject.toml └── tox.ini /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/status_embed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/.github/workflows/status_embed.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/README.md -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/__init__.py -------------------------------------------------------------------------------- /bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/__main__.py -------------------------------------------------------------------------------- /bot/cogs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/cogs/automod/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/cogs/automod/filepaste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/cogs/automod/filepaste.py -------------------------------------------------------------------------------- /bot/cogs/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/cogs/core/error_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/cogs/core/error_handler.py -------------------------------------------------------------------------------- /bot/cogs/core/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/cogs/core/help.py -------------------------------------------------------------------------------- /bot/cogs/core/sudo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/cogs/core/sudo.py -------------------------------------------------------------------------------- /bot/cogs/logging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/cogs/logging/join_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/cogs/logging/join_log.py -------------------------------------------------------------------------------- /bot/cogs/logging/member_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/cogs/logging/member_log.py -------------------------------------------------------------------------------- /bot/cogs/logging/message_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/cogs/logging/message_log.py -------------------------------------------------------------------------------- /bot/cogs/logging/mod_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/cogs/logging/mod_log.py -------------------------------------------------------------------------------- /bot/cogs/logging/server_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/cogs/logging/server_log.py -------------------------------------------------------------------------------- /bot/cogs/logging/voice_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/cogs/logging/voice_log.py -------------------------------------------------------------------------------- /bot/cogs/moderation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/cogs/moderation/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/cogs/moderation/lock.py -------------------------------------------------------------------------------- /bot/cogs/moderation/slowmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/cogs/moderation/slowmode.py -------------------------------------------------------------------------------- /bot/cogs/moderation/strikes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/cogs/moderation/strikes.py -------------------------------------------------------------------------------- /bot/cogs/setup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/cogs/setup/log_channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/cogs/setup/log_channels.py -------------------------------------------------------------------------------- /bot/cogs/setup/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/cogs/setup/permissions.py -------------------------------------------------------------------------------- /bot/cogs/setup/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/cogs/setup/roles.py -------------------------------------------------------------------------------- /bot/cogs/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/cogs/utility/embeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/cogs/utility/embeds.py -------------------------------------------------------------------------------- /bot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/config.py -------------------------------------------------------------------------------- /bot/core/autoload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/core/autoload.py -------------------------------------------------------------------------------- /bot/core/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/core/bot.py -------------------------------------------------------------------------------- /bot/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/database/__init__.py -------------------------------------------------------------------------------- /bot/database/log_channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/database/log_channels.py -------------------------------------------------------------------------------- /bot/database/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/database/permissions.py -------------------------------------------------------------------------------- /bot/database/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/database/roles.py -------------------------------------------------------------------------------- /bot/database/strikes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/database/strikes.py -------------------------------------------------------------------------------- /bot/utils/audit_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/utils/audit_parse.py -------------------------------------------------------------------------------- /bot/utils/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/utils/converters.py -------------------------------------------------------------------------------- /bot/utils/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/utils/diff.py -------------------------------------------------------------------------------- /bot/utils/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/utils/pages.py -------------------------------------------------------------------------------- /bot/utils/paste_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/utils/paste_upload.py -------------------------------------------------------------------------------- /bot/utils/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/utils/time.py -------------------------------------------------------------------------------- /bot/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/bot/utils/timer.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codin-Nerds/Neutron-Bot/HEAD/tox.ini --------------------------------------------------------------------------------