├── .abstruse.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── deploy.yaml ├── docker-compose.yml ├── requirements.txt ├── xenon.env └── xenon ├── bot.py ├── cogs ├── admin.py ├── api.py ├── backups.py ├── basics.py ├── botlist.py ├── builder.py ├── errors.py ├── help.py ├── logstalgia.py ├── metrics.py ├── sharding.py ├── templates.py └── users.py ├── config.py ├── healthcheck.py ├── launcher.py ├── logs └── .gitignore └── utils ├── backups.py ├── checks.py ├── context.py ├── formatter.py ├── helpers.py ├── lock.py ├── logger.py └── types.py /.abstruse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/.abstruse.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/README.md -------------------------------------------------------------------------------- /deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/deploy.yaml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/requirements.txt -------------------------------------------------------------------------------- /xenon.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon.env -------------------------------------------------------------------------------- /xenon/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/bot.py -------------------------------------------------------------------------------- /xenon/cogs/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/cogs/admin.py -------------------------------------------------------------------------------- /xenon/cogs/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/cogs/api.py -------------------------------------------------------------------------------- /xenon/cogs/backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/cogs/backups.py -------------------------------------------------------------------------------- /xenon/cogs/basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/cogs/basics.py -------------------------------------------------------------------------------- /xenon/cogs/botlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/cogs/botlist.py -------------------------------------------------------------------------------- /xenon/cogs/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/cogs/builder.py -------------------------------------------------------------------------------- /xenon/cogs/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/cogs/errors.py -------------------------------------------------------------------------------- /xenon/cogs/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/cogs/help.py -------------------------------------------------------------------------------- /xenon/cogs/logstalgia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/cogs/logstalgia.py -------------------------------------------------------------------------------- /xenon/cogs/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/cogs/metrics.py -------------------------------------------------------------------------------- /xenon/cogs/sharding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/cogs/sharding.py -------------------------------------------------------------------------------- /xenon/cogs/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/cogs/templates.py -------------------------------------------------------------------------------- /xenon/cogs/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/cogs/users.py -------------------------------------------------------------------------------- /xenon/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/config.py -------------------------------------------------------------------------------- /xenon/healthcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/healthcheck.py -------------------------------------------------------------------------------- /xenon/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/launcher.py -------------------------------------------------------------------------------- /xenon/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /xenon/utils/backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/utils/backups.py -------------------------------------------------------------------------------- /xenon/utils/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/utils/checks.py -------------------------------------------------------------------------------- /xenon/utils/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/utils/context.py -------------------------------------------------------------------------------- /xenon/utils/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/utils/formatter.py -------------------------------------------------------------------------------- /xenon/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/utils/helpers.py -------------------------------------------------------------------------------- /xenon/utils/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/utils/lock.py -------------------------------------------------------------------------------- /xenon/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/utils/logger.py -------------------------------------------------------------------------------- /xenon/utils/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xenon-Bot/xenon/HEAD/xenon/utils/types.py --------------------------------------------------------------------------------