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
}