Matheus Sampaio Queiroga
9d16350e2d
Signed-off-by: Matheus Sampaio Queiroga <srherobrine20@gmail.com>
18 lines
204 B
Go
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)
|
|
)
|