Sijisu
Results
2
comments of
Sijisu
The issue persists for me with `rust-lang.rust` version `v0.7.8` and `rustup show`: `stable-x86_64-unknown-linux-gnu (default) rustc 1.57.0 (f1edd0429 2021-11-29)`
This works no problem for me: ```golang //go:embed static var content embed.FS mux := httprouter.New() if static, err := fs.Sub(content, "static"); err == nil { mux.Handler("GET", "/static/*path", http.StripPrefix("/static", http.FileServer(http.FS(static)))) }...