schnutibox/assets/prepare/assets.go
Marvin Steadfast b7418991e1
All checks were successful
continuous-integration/drone/push Build is passing
new play metric
it sets playing tracks on 1 and played but non playing tracks to 0. this
also needed a implementation of a watch goroutine that checks the status
of the MPD server each second to set this metric.
2021-05-28 08:47:57 +02:00

13 lines
256 B
Go

//nolint:gochecknoglobals
package prepare
import "embed"
// Files are files to be copied to the system.
//go:embed files
var Files embed.FS
// Templates are the used templates for creating file on the system.
//go:embed templates
var Templates embed.FS