Files
kurious/assets/kurious/embed.go
2024-01-09 15:19:53 +03:00

14 lines
181 B
Go

package kurious
import (
"embed"
"net/http"
)
//go:embed robots.txt static/*
var root embed.FS
func AsHTTPFileHandler() http.Handler {
return http.FileServer(http.FS(root))
}