Files
Yeuoly b9ac72257e Expand Slack trigger to full Events API catalog (#217)
* 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
2025-10-17 16:44:43 +08:00

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()