Marvin Steadfast
b7418991e1
All checks were successful
continuous-integration/drone/push Build is passing
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.
13 lines
256 B
Go
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
|