Files
dify-plugin-sdks/python/examples/github_trigger/main.py
T
Yeuoly 8d83234b83 fix: update GitHub trigger plugin configuration
- Removed the MAX_REQUEST_TIMEOUT parameter from the Plugin initialization for default behavior.
- Added a new section in the GitHub provider YAML file to specify the source of the Python implementation.

These changes simplify the plugin setup and enhance the configuration clarity for the GitHub trigger integration.
2025-09-26 23:17:40 +08:00

7 lines
125 B
Python

from dify_plugin import DifyPluginEnv, Plugin
plugin = Plugin(DifyPluginEnv())
if __name__ == "__main__":
plugin.run()