10 lines
125 B
Go
10 lines
125 B
Go
package handlers
|
|
|
|
import "net/http"
|
|
|
|
var HttpFS http.Handler
|
|
|
|
func Init() {
|
|
HttpFS = http.FileServer(http.Dir("wwwroot"))
|
|
}
|