mirror of
https://github.com/k3s-io/k3s.git
synced 2026-02-03 20:39:49 -05:00
Signed-off-by: muicoder <muicoder@gmail.com> Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
17 lines
232 B
Go
17 lines
232 B
Go
package data
|
|
|
|
import (
|
|
"embed"
|
|
|
|
"github.com/k3s-io/k3s/pkg/util/bindata"
|
|
)
|
|
|
|
//go:embed embed/*
|
|
var embedFS embed.FS
|
|
|
|
var (
|
|
bd = bindata.Bindata{FS: &embedFS, Prefix: "embed"}
|
|
|
|
Asset = bd.Asset
|
|
AssetNames = bd.AssetNames
|
|
)
|