├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── MsgObj.py ├── README.md ├── bot.py ├── command_session.py ├── init_bot.py ├── plugin.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | config.py -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Umb/FAQ-In-QQ/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Umb/FAQ-In-QQ/HEAD/LICENSE -------------------------------------------------------------------------------- /MsgObj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Umb/FAQ-In-QQ/HEAD/MsgObj.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Umb/FAQ-In-QQ/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Umb/FAQ-In-QQ/HEAD/bot.py -------------------------------------------------------------------------------- /command_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Umb/FAQ-In-QQ/HEAD/command_session.py -------------------------------------------------------------------------------- /init_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Umb/FAQ-In-QQ/HEAD/init_bot.py -------------------------------------------------------------------------------- /plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Umb/FAQ-In-QQ/HEAD/plugin.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Umb/FAQ-In-QQ/HEAD/requirements.txt --------------------------------------------------------------------------------