2021-05-28 08:47:57 +02:00
|
|
|
//nolint:gochecknoglobals
|
2021-05-03 14:51:53 +02:00
|
|
|
package prepare
|
|
|
|
|
|
|
|
import "embed"
|
|
|
|
|
2021-05-28 08:47:57 +02:00
|
|
|
// Files are files to be copied to the system.
|
2021-05-03 14:51:53 +02:00
|
|
|
//go:embed files
|
|
|
|
var Files embed.FS
|
|
|
|
|
2021-05-28 08:47:57 +02:00
|
|
|
// Templates are the used templates for creating file on the system.
|
2021-05-03 14:51:53 +02:00
|
|
|
//go:embed templates
|
|
|
|
var Templates embed.FS
|