go-embed-test/test.go

12 lines
185 B
Go

package embedtest
import _ "embed" // need to import embed
//go:embed embed.txt
var embed string
// Embed will return the contents of embed.txt
func Embed() string {
return embed
}