quintodrome/api/ping.go

8 lines
127 B
Go
Raw Normal View History

package api
2016-02-23 20:07:57 -09:00
type PingController struct{ BaseAPIController }
2016-02-23 20:29:27 -09:00
2016-02-25 14:47:25 -09:00
func (c *PingController) Get() {
c.SendResponse(c.NewEmpty())
2016-02-23 20:07:57 -09:00
}