package v1 import ( "github.com/labstack/echo" "net/http" "git.mowie.cc/konrad/Library/models" ) func List(c echo.Context) error { list := models.ListBooks() return c.JSON(http.StatusOK, list) }