26 lines
527 B
Go
26 lines
527 B
Go
package main
|
|
|
|
import (
|
|
"html/template"
|
|
"net/http"
|
|
)
|
|
|
|
// ServiHTML fa partire il server html
|
|
func ServiHTML() {
|
|
http.HandleFunc("/", handlerRoot)
|
|
http.ListenAndServe(":3000", nil)
|
|
}
|
|
|
|
func handlerRoot(w http.ResponseWriter, r *http.Request) {
|
|
templ, err := template.ParseFiles("template/Interfaccia.html")
|
|
if err != nil {
|
|
panic(err.Error())
|
|
}
|
|
varmap := map[string]interface{}{
|
|
"matrice": Matrix,
|
|
"tempoAggiorna": Clock,
|
|
"larghezza": Larghezza,
|
|
"altezza": Altezza,
|
|
}
|
|
templ.Execute(w, varmap)
|
|
}
|