pp_projekt/test/controller.go
2018-11-24 20:50:31 +01:00

10 lines
128 B
Go

package test
import (
"fmt"
"net/http"
)
func Index(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, "Welcome!\n")
}