mirror of
https://github.com/ditatompel/xmr-remote-nodes.git
synced 2025-01-07 03:19:35 +00:00
21 lines
343 B
Go
21 lines
343 B
Go
|
package views
|
||
|
|
||
|
import (
|
||
|
"embed"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/gofiber/fiber/v2"
|
||
|
"github.com/gofiber/fiber/v2/middleware/filesystem"
|
||
|
)
|
||
|
|
||
|
//go:embed assets/*
|
||
|
var embedStatic embed.FS
|
||
|
|
||
|
func EmbedAssets() fiber.Handler {
|
||
|
return filesystem.New(filesystem.Config{
|
||
|
Root: http.FS(embedStatic),
|
||
|
PathPrefix: "assets",
|
||
|
Browse: false,
|
||
|
})
|
||
|
}
|