go-embed-test/test.go
2022-04-18 11:22:21 -04:00

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
}