├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── actions │ └── setup-python │ │ └── action.yml └── workflows │ ├── release.yml │ ├── ruff.yml │ └── testpypi-publish.yml ├── LICENSE ├── README.md ├── nonebot_plugin_eventmonitor ├── __init__.py ├── chuo_message.py ├── config.py ├── fonts │ └── SIMYOU.TTF ├── handle.py ├── matcher.py └── txt2img.py ├── poetry.lock └── pyproject.toml /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reversedeer/nonebot_plugin_eventmonitor/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reversedeer/nonebot_plugin_eventmonitor/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/actions/setup-python/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reversedeer/nonebot_plugin_eventmonitor/HEAD/.github/actions/setup-python/action.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reversedeer/nonebot_plugin_eventmonitor/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/ruff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reversedeer/nonebot_plugin_eventmonitor/HEAD/.github/workflows/ruff.yml -------------------------------------------------------------------------------- /.github/workflows/testpypi-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reversedeer/nonebot_plugin_eventmonitor/HEAD/.github/workflows/testpypi-publish.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reversedeer/nonebot_plugin_eventmonitor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reversedeer/nonebot_plugin_eventmonitor/HEAD/README.md -------------------------------------------------------------------------------- /nonebot_plugin_eventmonitor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reversedeer/nonebot_plugin_eventmonitor/HEAD/nonebot_plugin_eventmonitor/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_eventmonitor/chuo_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reversedeer/nonebot_plugin_eventmonitor/HEAD/nonebot_plugin_eventmonitor/chuo_message.py -------------------------------------------------------------------------------- /nonebot_plugin_eventmonitor/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reversedeer/nonebot_plugin_eventmonitor/HEAD/nonebot_plugin_eventmonitor/config.py -------------------------------------------------------------------------------- /nonebot_plugin_eventmonitor/fonts/SIMYOU.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reversedeer/nonebot_plugin_eventmonitor/HEAD/nonebot_plugin_eventmonitor/fonts/SIMYOU.TTF -------------------------------------------------------------------------------- /nonebot_plugin_eventmonitor/handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reversedeer/nonebot_plugin_eventmonitor/HEAD/nonebot_plugin_eventmonitor/handle.py -------------------------------------------------------------------------------- /nonebot_plugin_eventmonitor/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reversedeer/nonebot_plugin_eventmonitor/HEAD/nonebot_plugin_eventmonitor/matcher.py -------------------------------------------------------------------------------- /nonebot_plugin_eventmonitor/txt2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reversedeer/nonebot_plugin_eventmonitor/HEAD/nonebot_plugin_eventmonitor/txt2img.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reversedeer/nonebot_plugin_eventmonitor/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reversedeer/nonebot_plugin_eventmonitor/HEAD/pyproject.toml --------------------------------------------------------------------------------