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