go-embed-test/test.go

12 lines
185 B
Go
Raw Permalink Normal View History

2022-04-18 15:22:21 +00:00
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
}