linstrom/cmd/test/main.go
mStar c572066571 progress
server is launchable and passkey support works
2024-09-27 16:53:22 +02:00

13 lines
130 B
Go

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