├── .flake8 ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .vscode ├── docstring.mustache └── settings.json ├── LICENSE ├── README.md ├── example_bot ├── .env.dev ├── .env.prod ├── .gitignore ├── README.md ├── bot.py └── src │ └── msg_logger │ ├── __init__.py │ └── models.py ├── nonebot_plugin_tortoise_orm ├── __init__.py └── config.py ├── pdm.lock └── pyproject.toml /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 90 3 | ignore = E402 -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexue-z/nonebot-plugin-tortoise-orm/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexue-z/nonebot-plugin-tortoise-orm/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/docstring.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexue-z/nonebot-plugin-tortoise-orm/HEAD/.vscode/docstring.mustache -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexue-z/nonebot-plugin-tortoise-orm/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexue-z/nonebot-plugin-tortoise-orm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexue-z/nonebot-plugin-tortoise-orm/HEAD/README.md -------------------------------------------------------------------------------- /example_bot/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexue-z/nonebot-plugin-tortoise-orm/HEAD/example_bot/.env.dev -------------------------------------------------------------------------------- /example_bot/.env.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexue-z/nonebot-plugin-tortoise-orm/HEAD/example_bot/.env.prod -------------------------------------------------------------------------------- /example_bot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexue-z/nonebot-plugin-tortoise-orm/HEAD/example_bot/.gitignore -------------------------------------------------------------------------------- /example_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexue-z/nonebot-plugin-tortoise-orm/HEAD/example_bot/README.md -------------------------------------------------------------------------------- /example_bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexue-z/nonebot-plugin-tortoise-orm/HEAD/example_bot/bot.py -------------------------------------------------------------------------------- /example_bot/src/msg_logger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexue-z/nonebot-plugin-tortoise-orm/HEAD/example_bot/src/msg_logger/__init__.py -------------------------------------------------------------------------------- /example_bot/src/msg_logger/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexue-z/nonebot-plugin-tortoise-orm/HEAD/example_bot/src/msg_logger/models.py -------------------------------------------------------------------------------- /nonebot_plugin_tortoise_orm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexue-z/nonebot-plugin-tortoise-orm/HEAD/nonebot_plugin_tortoise_orm/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_tortoise_orm/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexue-z/nonebot-plugin-tortoise-orm/HEAD/nonebot_plugin_tortoise_orm/config.py -------------------------------------------------------------------------------- /pdm.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexue-z/nonebot-plugin-tortoise-orm/HEAD/pdm.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kexue-z/nonebot-plugin-tortoise-orm/HEAD/pyproject.toml --------------------------------------------------------------------------------