├── .gitignore ├── README.md ├── bot.py ├── plugins ├── __init__.py └── notes.py ├── requirements.txt └── slackbot_settings.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz/slack-notebot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz/slack-notebot/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz/slack-notebot/HEAD/bot.py -------------------------------------------------------------------------------- /plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz/slack-notebot/HEAD/plugins/notes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz/slack-notebot/HEAD/requirements.txt -------------------------------------------------------------------------------- /slackbot_settings.py: -------------------------------------------------------------------------------- 1 | PLUGINS = [ 2 | 'plugins', 3 | ] 4 | --------------------------------------------------------------------------------