mirror of
https://github.com/langgenius/dify-plugin-sdks.git
synced 2026-07-22 02:15:22 -04:00
b9ac72257e
* Expand Slack trigger to full Events API catalog * Remove Slack trigger subscription constructor * Remove Slack event selection from subscription schema * Use official Slack icon asset * Stop reading Slack signing secret from constructor parameters * chore: remove tead_id
11 lines
198 B
Python
11 lines
198 B
Python
import sys
|
|
|
|
sys.path.append("../..") # ENSURE THE SOURCE CODE IS FOUND
|
|
|
|
from dify_plugin import DifyPluginEnv, Plugin
|
|
|
|
plugin = Plugin(DifyPluginEnv())
|
|
|
|
if __name__ == "__main__":
|
|
plugin.run()
|