10 lines
224 B
Go
10 lines
224 B
Go
// Package catalogdata embeds the built-in local game catalog.
|
|
package catalogdata
|
|
|
|
import "embed"
|
|
|
|
// Files contains built-in templates and their packaged assets.
|
|
//
|
|
//go:embed */template.yaml */assets/*
|
|
var Files embed.FS
|