aboutsummaryrefslogtreecommitdiff
path: root/assets.go
blob: 09052289c89c7cc28519d4e38b0f37d4030c0b21 (plain)
1
2
3
4
5
6
7
8
package main

import "net/http"

func init() {
	http.Handle("/css/", http.FileServer(http.Dir("assets")))
	http.Handle("/fonts/", http.FileServer(http.Dir("assets")))
}