Files
gonic/handler/article.go
2019-04-01 00:59:47 +01:00

18 lines
328 B
Go

package handler
import (
"net/http"
"github.com/sentriz/gonic/context"
"github.com/sentriz/gonic/subsonic"
"github.com/labstack/echo"
)
// GetTest doesn't do anything
func (h *Handler) GetTest(c echo.Context) error {
cc := c.(*context.Subsonic)
resp := subsonic.NewResponse()
return cc.Respond(http.StatusOK, resp)
}