linstrom/cmd/test/main.go

14 lines
130 B
Go
Raw Normal View History

package main
import (
"embed"
"fmt"
)
//go:embed example
var fs embed.FS
func main() {
fmt.Println(fs.ReadDir("example"))
}