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