21 lines
318 B
Go
21 lines
318 B
Go
package main
|
|
|
|
import (
|
|
//"encoding/json"
|
|
"log"
|
|
"net/http"
|
|
"fmt"
|
|
|
|
"github.com/gorilla/mux"
|
|
)
|
|
|
|
func main() {
|
|
router := mux.NewRouter()
|
|
router.HandleFunc("/ping", ping).Methods("GET")
|
|
|
|
log.Fatal(http.ListenAndServe(":8080", router))
|
|
}
|
|
|
|
func ping(w http.ResponseWriter, r *http.Request) {
|
|
fmt.Fprintf(w, "pong")
|
|
} |