1
0
Fork 0
mirror of https://github.com/alice-lg/birdwatcher.git synced 2025-03-23 00:00:07 +01:00
birdwatcher/endpoints/status.go
2019-02-20 17:25:57 +01:00

12 lines
220 B
Go

package endpoints
import (
"net/http"
"github.com/alice-lg/birdwatcher/bird"
"github.com/julienschmidt/httprouter"
)
func Status(r *http.Request, ps httprouter.Params) (bird.Parsed, bool) {
return bird.Status()
}