├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── nonebot_plugin_withdraw ├── __init__.py ├── adapters │ ├── __init__.py │ ├── discord.py │ ├── dodo.py │ ├── feishu.py │ ├── kaiheila.py │ ├── onebot_v11.py │ ├── onebot_v12.py │ ├── qq.py │ ├── satori.py │ └── telegram.py ├── config.py ├── handler.py ├── receipt.py └── utils.py ├── poetry.lock └── pyproject.toml /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/README.md -------------------------------------------------------------------------------- /nonebot_plugin_withdraw/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/nonebot_plugin_withdraw/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_withdraw/adapters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/nonebot_plugin_withdraw/adapters/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_withdraw/adapters/discord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/nonebot_plugin_withdraw/adapters/discord.py -------------------------------------------------------------------------------- /nonebot_plugin_withdraw/adapters/dodo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/nonebot_plugin_withdraw/adapters/dodo.py -------------------------------------------------------------------------------- /nonebot_plugin_withdraw/adapters/feishu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/nonebot_plugin_withdraw/adapters/feishu.py -------------------------------------------------------------------------------- /nonebot_plugin_withdraw/adapters/kaiheila.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/nonebot_plugin_withdraw/adapters/kaiheila.py -------------------------------------------------------------------------------- /nonebot_plugin_withdraw/adapters/onebot_v11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/nonebot_plugin_withdraw/adapters/onebot_v11.py -------------------------------------------------------------------------------- /nonebot_plugin_withdraw/adapters/onebot_v12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/nonebot_plugin_withdraw/adapters/onebot_v12.py -------------------------------------------------------------------------------- /nonebot_plugin_withdraw/adapters/qq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/nonebot_plugin_withdraw/adapters/qq.py -------------------------------------------------------------------------------- /nonebot_plugin_withdraw/adapters/satori.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/nonebot_plugin_withdraw/adapters/satori.py -------------------------------------------------------------------------------- /nonebot_plugin_withdraw/adapters/telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/nonebot_plugin_withdraw/adapters/telegram.py -------------------------------------------------------------------------------- /nonebot_plugin_withdraw/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/nonebot_plugin_withdraw/config.py -------------------------------------------------------------------------------- /nonebot_plugin_withdraw/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/nonebot_plugin_withdraw/handler.py -------------------------------------------------------------------------------- /nonebot_plugin_withdraw/receipt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/nonebot_plugin_withdraw/receipt.py -------------------------------------------------------------------------------- /nonebot_plugin_withdraw/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/nonebot_plugin_withdraw/utils.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-withdraw/HEAD/pyproject.toml --------------------------------------------------------------------------------