Library/routes/api/v1/books_list.go

10 lines
139 B
Go
Raw Normal View History

2017-10-09 12:29:21 +00:00
package v1
import (
"github.com/labstack/echo"
"net/http"
)
func List(c echo.Context) error {
return c.String(http.StatusOK, "list")
}