aboutsummaryrefslogtreecommitdiff
path: root/static.go
blob: 11f0fc6608905a9fdf63f8001c22ca84ae7aca0c (plain)
1
2
3
4
5
6
7
8
package main

import "net/http"

func init() {
	//http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("static"))))
	http.Handle("/static/", http.FileServer(http.Dir("assets")))
}