├── .gitignore ├── .gitlab-ci.yml ├── LICENSE ├── README.md ├── base-config.yaml ├── karma ├── __init__.py ├── bot.py ├── db.py └── migrations.py └── maubot.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | *.mbp 2 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/karma/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/karma/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/karma/HEAD/README.md -------------------------------------------------------------------------------- /base-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/karma/HEAD/base-config.yaml -------------------------------------------------------------------------------- /karma/__init__.py: -------------------------------------------------------------------------------- 1 | from .bot import KarmaBot 2 | -------------------------------------------------------------------------------- /karma/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/karma/HEAD/karma/bot.py -------------------------------------------------------------------------------- /karma/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/karma/HEAD/karma/db.py -------------------------------------------------------------------------------- /karma/migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/karma/HEAD/karma/migrations.py -------------------------------------------------------------------------------- /maubot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maubot/karma/HEAD/maubot.yaml --------------------------------------------------------------------------------