assets.go

234 B • Modified 2024-03-12 22:53
package enterprise_operator

import "embed"

//go:embed latest/* openshift/*
var fs embed.FS

// GetLatestOperatorStaticResources returns the fs with the embedded assets
func GetLatestOperatorStaticResources() embed.FS {
	return fs
}