package assets
import (
"embed"
"io/fs"
"net/http"
)
// Embedded static assets for tenant blogs
//
//go:embed css js
var staticFS embed.FS
func Handler() http.Handler {
sub, _ := fs.Sub(staticFS, ".")
return http.FileServer(http.FS(sub))
}