mirror of
https://github.com/langgenius/dify-plugin-sdks.git
synced 2026-07-22 18:35:29 -04:00
8d83234b83
- 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.
7 lines
125 B
Python
7 lines
125 B
Python
from dify_plugin import DifyPluginEnv, Plugin
|
|
|
|
plugin = Plugin(DifyPluginEnv())
|
|
|
|
if __name__ == "__main__":
|
|
plugin.run()
|