├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── _conf_schema.json ├── formatters.py ├── main.py ├── metadata.yaml └── webhook_server.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulter/astrbot_plugin_github_cards/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulter/astrbot_plugin_github_cards/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_conf_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulter/astrbot_plugin_github_cards/HEAD/_conf_schema.json -------------------------------------------------------------------------------- /formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulter/astrbot_plugin_github_cards/HEAD/formatters.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulter/astrbot_plugin_github_cards/HEAD/main.py -------------------------------------------------------------------------------- /metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulter/astrbot_plugin_github_cards/HEAD/metadata.yaml -------------------------------------------------------------------------------- /webhook_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soulter/astrbot_plugin_github_cards/HEAD/webhook_server.py --------------------------------------------------------------------------------