12 lines
185 B
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
|
|
}
|