forked from FairwindsOps/pluto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathembed.go
More file actions
17 lines (14 loc) · 374 Bytes
/
Copy pathembed.go
File metadata and controls
17 lines (14 loc) · 374 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// plutoversionsfile makes the Pluto versions.yaml file available to the pluto
// binary and others that import Pluto packages.
package plutoversionsfile
import (
_ "embed"
)
var (
//go:embed versions.yaml
plutoVersionsFileContent []byte
)
// Content returns the Pluto versions.yaml file as a slice of bytes.
func Content() []byte {
return plutoVersionsFileContent
}