1
0
Fork 0
mirror of https://github.com/alice-lg/birdwatcher.git synced 2025-03-09 00:00:05 +01:00
birdwatcher/endpoints/status.go

13 lines
243 B
Go
Raw Permalink Normal View History

2016-11-11 14:14:38 +01:00
package endpoints
import (
"net/http"
"github.com/alice-lg/birdwatcher/bird"
2016-11-11 14:14:38 +01:00
"github.com/julienschmidt/httprouter"
)
func Status(r *http.Request, ps httprouter.Params, useCache bool) (bird.Parsed, bool) {
return bird.Status(useCache)
2016-11-11 14:14:38 +01:00
}