Files
maxwarden/handlers/init.go
2025-03-06 23:54:11 -05:00

10 lines
125 B
Go

package handlers
import "net/http"
var HttpFS http.Handler
func Init() {
HttpFS = http.FileServer(http.Dir("wwwroot"))
}