schnutibox/assets/assets.go
Marvin Steadfast 5f7215d965
Some checks failed
continuous-integration/drone/push Build is failing
preparation work + ci
2021-04-16 09:23:11 +02:00

28 lines
554 B
Go

//nolint:gochecknoglobals,golint,stylecheck,godox
package assets
import _ "embed"
// TODO: Using embed.FS
//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