13 lines
204 B
Go
13 lines
204 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/uptrace/bunrouter"
|
|
)
|
|
|
|
func Ping(w http.ResponseWriter, req bunrouter.Request) error {
|
|
w.WriteHeader(http.StatusOK)
|
|
w.Write([]byte("Pong!"))
|
|
return nil
|
|
}
|