mirror of
https://github.com/langgenius/dify-plugin-sdks.git
synced 2026-07-22 10:25:23 -04:00
cad974b207
- Added user_id field to EventDispatch and TriggerDispatchResponse models to track the user triggering events. - Updated GitHub trigger provider to include user_id in event dispatching. - Modified star event parameters in YAML to simplify naming conventions from "star_created" and "star_deleted" to "created" and "deleted". - Bumped plugin version in manifest.yaml from 1.3.5 to 1.3.6 to reflect these changes.
8 lines
126 B
Python
8 lines
126 B
Python
from dify_plugin import DifyPluginEnv, Plugin
|
|
|
|
plugin = Plugin(DifyPluginEnv())
|
|
|
|
if __name__ == "__main__":
|
|
plugin.run()
|
|
|