14 lines
201 B
Go
14 lines
201 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
|
|
"gitnet.fr/deblan/go-form-demo/controller"
|
|
)
|
|
|
|
func main() {
|
|
http.HandleFunc("/", controller.UsingTemplate)
|
|
|
|
log.Fatal(http.ListenAndServe(":1324", nil))
|
|
}
|