template.go 146 B

123456789101112
  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