Files
gothstarter/static_prod.go
2024-04-24 19:52:05 +02:00

17 lines
187 B
Go

//go:build !dev
// +build !dev
package main
import (
"embed"
"net/http"
)
//go:embed public
var publicFS embed.FS
func public() http.Handler {
return http.FileServerFS(publicFS)
}