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