mirror of
https://github.com/langgenius/dify-plugin-daemon.git
synced 2026-07-22 17:56:00 -04:00
15 lines
198 B
Go
15 lines
198 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
|