This commit finally removes the embed package in favor of more specific resource packages
10 lines
162 B
Go
10 lines
162 B
Go
package core
|
|
|
|
import (
|
|
"embed"
|
|
_ "embed"
|
|
)
|
|
|
|
// Runtime contains runtime resources to be installed into any instance
|
|
//go:embed all:runtime
|
|
var Runtime embed.FS
|