template.go 198 B

123456789101112131415
  1. package plugin
  2. import (
  3. _ "embed"
  4. )
  5. //go:embed templates/README.md
  6. var README []byte
  7. //go:embed templates/.env.example
  8. var ENV_EXAMPLE []byte
  9. //go:embed templates/PRIVACY.md
  10. var PRIVACY []byte