├── .gitignore ├── LICENSE ├── README.md ├── README_CN.md ├── assets └── simplicity.png ├── package.json ├── src └── index.ts ├── tsconfig.json └── wrangler.toml.example /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazywoola/dify-extensions-worker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazywoola/dify-extensions-worker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazywoola/dify-extensions-worker/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/simplicity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazywoola/dify-extensions-worker/HEAD/assets/simplicity.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazywoola/dify-extensions-worker/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazywoola/dify-extensions-worker/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazywoola/dify-extensions-worker/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wrangler.toml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazywoola/dify-extensions-worker/HEAD/wrangler.toml.example --------------------------------------------------------------------------------