bds-dashboard/web/web.go
Matheus Sampaio Queiroga 9d16350e2d
Update codes
Signed-off-by: Matheus Sampaio Queiroga <srherobrine20@gmail.com>
2024-08-22 21:39:35 -03:00

18 lines
204 B
Go

package web
import (
"embed"
"net/http"
)
var (
//go:embed templates/*
Templates embed.FS
//go:embed **/*.js **/*.css
WebFiles embed.FS
// Static web requests
HttpStatic = http.FS(WebFiles)
)