├── LICENSE ├── README.md ├── nonebot_plugin_setu ├── __init__.py ├── dao │ ├── __init__.py │ ├── group_dao.py │ ├── image_dao.py │ └── user_dao.py ├── file_tools.py ├── getPic.py ├── proxies.py ├── setu_api.py ├── utils.py └── withdraw.py ├── pyproject.toml └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayanamiblhx/nonebot_plugin_setu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayanamiblhx/nonebot_plugin_setu/HEAD/README.md -------------------------------------------------------------------------------- /nonebot_plugin_setu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayanamiblhx/nonebot_plugin_setu/HEAD/nonebot_plugin_setu/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_setu/dao/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nonebot_plugin_setu/dao/group_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayanamiblhx/nonebot_plugin_setu/HEAD/nonebot_plugin_setu/dao/group_dao.py -------------------------------------------------------------------------------- /nonebot_plugin_setu/dao/image_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayanamiblhx/nonebot_plugin_setu/HEAD/nonebot_plugin_setu/dao/image_dao.py -------------------------------------------------------------------------------- /nonebot_plugin_setu/dao/user_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayanamiblhx/nonebot_plugin_setu/HEAD/nonebot_plugin_setu/dao/user_dao.py -------------------------------------------------------------------------------- /nonebot_plugin_setu/file_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayanamiblhx/nonebot_plugin_setu/HEAD/nonebot_plugin_setu/file_tools.py -------------------------------------------------------------------------------- /nonebot_plugin_setu/getPic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayanamiblhx/nonebot_plugin_setu/HEAD/nonebot_plugin_setu/getPic.py -------------------------------------------------------------------------------- /nonebot_plugin_setu/proxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayanamiblhx/nonebot_plugin_setu/HEAD/nonebot_plugin_setu/proxies.py -------------------------------------------------------------------------------- /nonebot_plugin_setu/setu_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayanamiblhx/nonebot_plugin_setu/HEAD/nonebot_plugin_setu/setu_api.py -------------------------------------------------------------------------------- /nonebot_plugin_setu/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayanamiblhx/nonebot_plugin_setu/HEAD/nonebot_plugin_setu/utils.py -------------------------------------------------------------------------------- /nonebot_plugin_setu/withdraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayanamiblhx/nonebot_plugin_setu/HEAD/nonebot_plugin_setu/withdraw.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayanamiblhx/nonebot_plugin_setu/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayanamiblhx/nonebot_plugin_setu/HEAD/requirements.txt --------------------------------------------------------------------------------