15 lines
167 B
Go
15 lines
167 B
Go
package embeds
|
|
|
|
import (
|
|
"embed"
|
|
)
|
|
|
|
//go:embed static
|
|
var Static embed.FS
|
|
|
|
//go:embed templates
|
|
var Templates embed.FS
|
|
|
|
//go:embed mc-config.yaml
|
|
var Config embed.FS
|