2021-04-16 09:23:11 +02:00
|
|
|
//nolint:gochecknoglobals,golint,stylecheck,godox
|
2021-04-14 10:40:57 +02:00
|
|
|
package assets
|
|
|
|
|
|
|
|
import _ "embed"
|
|
|
|
|
2021-04-16 09:23:11 +02:00
|
|
|
// TODO: Using embed.FS
|
|
|
|
|
2021-04-14 10:40:57 +02:00
|
|
|
//go:embed templates/schnutibox.yml.tmpl
|
|
|
|
var SchnutiboxConfig string
|
|
|
|
|
|
|
|
//go:embed files/schnutibox.service
|
|
|
|
var SchnutiboxService []byte
|
|
|
|
|
|
|
|
//go:embed templates/fstab.raspbian.tmpl
|
|
|
|
var FstabRaspbianTemplate string
|
|
|
|
|
|
|
|
//go:embed templates/mopidy.conf.tmpl
|
|
|
|
var MopidyConf string
|
|
|
|
|
|
|
|
//go:embed files/upmpdcli.conf
|
|
|
|
var UpmpdcliConf []byte
|
|
|
|
|
|
|
|
//go:embed files/ntp.service
|
|
|
|
var NtpService []byte
|
|
|
|
|
|
|
|
//go:embed templates/50-neuftech.rules.tmpl
|
|
|
|
var UDEVRules string
|