├── .editorconfig ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── nonebot_plugin_gscode ├── __init__.py └── data_source.py ├── poetry.lock └── pyproject.toml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsterxcn/nonebot-plugin-gscode/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsterxcn/nonebot-plugin-gscode/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsterxcn/nonebot-plugin-gscode/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsterxcn/nonebot-plugin-gscode/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsterxcn/nonebot-plugin-gscode/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsterxcn/nonebot-plugin-gscode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsterxcn/nonebot-plugin-gscode/HEAD/README.md -------------------------------------------------------------------------------- /nonebot_plugin_gscode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsterxcn/nonebot-plugin-gscode/HEAD/nonebot_plugin_gscode/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_gscode/data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsterxcn/nonebot-plugin-gscode/HEAD/nonebot_plugin_gscode/data_source.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsterxcn/nonebot-plugin-gscode/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsterxcn/nonebot-plugin-gscode/HEAD/pyproject.toml --------------------------------------------------------------------------------