example.go 309 B

123456789101112131415161718192021
  1. package scaffold
  2. import _ "embed"
  3. //go:embed filer.toml
  4. var Filer string
  5. //go:embed notification.toml
  6. var Notification string
  7. //go:embed replication.toml
  8. var Replication string
  9. //go:embed security.toml
  10. var Security string
  11. //go:embed master.toml
  12. var Master string
  13. //go:embed shell.toml
  14. var Shell string