added instruction booklet

This commit is contained in:
Jacob 2025-08-08 22:49:17 +02:00
parent f59c6a0547
commit d1ba149b63
2 changed files with 1 additions and 0 deletions

View File

@ -71,6 +71,7 @@ func buildHandlers() {
http.HandleFunc("/post/", postHandler) http.HandleFunc("/post/", postHandler)
http.HandleFunc("/update", updateHandler) http.HandleFunc("/update", updateHandler)
http.HandleFunc("/", pastHandler) http.HandleFunc("/", pastHandler)
http.Handle("/documents/", http.StripPrefix("/documents/", http.FileServer(http.Dir("documents"))))
http.Handle("/images/", http.StripPrefix("/images/", http.FileServer(http.Dir("images")))) http.Handle("/images/", http.StripPrefix("/images/", http.FileServer(http.Dir("images"))))
http.Handle("/css/", http.StripPrefix("/css/", http.FileServer(http.Dir("css")))) http.Handle("/css/", http.StripPrefix("/css/", http.FileServer(http.Dir("css"))))
} }