mirror of
https://github.com/langgenius/dify-plugin-daemon.git
synced 2026-07-22 01:35:24 -04:00
63a12615ab
* feat(cli): add github ci to template * chore: change the trigger condition to release * feat: add guide document * fix: add .github to .gitignore --------- Co-authored-by: Yeuoly <admin@srmxy.cn>
18 lines
292 B
Go
18 lines
292 B
Go
package plugin
|
|
|
|
import (
|
|
_ "embed"
|
|
)
|
|
|
|
//go:embed templates/README.md
|
|
var README []byte
|
|
|
|
//go:embed templates/.env.example
|
|
var ENV_EXAMPLE []byte
|
|
|
|
//go:embed templates/PRIVACY.md
|
|
var PRIVACY []byte
|
|
|
|
//go:embed templates/.github/workflows/plugin-publish.yml
|
|
var PLUGIN_PUBLISH_WORKFLOW []byte
|