massive: move a lot of things

This commit is contained in:
Inanc Gumus
2019-04-26 21:32:20 +03:00
parent da30b109f8
commit 0547b1e320
105 changed files with 2624 additions and 192 deletions

View File

@ -0,0 +1,11 @@
package main
import "html/template"
var tmpl *template.Template
func init() {
tmpl = template.Must(
template.New("list.tmpl").
ParseFiles("list.tmpl"))
}