mirror of
https://github.com/langgenius/dify-plugin-sdks.git
synced 2026-07-22 02:15:22 -04:00
8 lines
126 B
Python
8 lines
126 B
Python
from dify_plugin import DifyPluginEnv, Plugin
|
|
|
|
plugin = Plugin(DifyPluginEnv())
|
|
|
|
if __name__ == "__main__":
|
|
plugin.run()
|
|
|