Files
gonic/handler/article.go
2019-03-29 17:14:33 +00:00

13 lines
192 B
Go

package handler
import (
"net/http"
"github.com/labstack/echo"
)
// GetTest doesn't do anything
func (h *Handler) GetTest(c echo.Context) error {
return c.JSON(http.StatusOK, "hello")
}