All Downloads are FREE. Search and download functionalities are using the official Maven repository.

go-echo-server.api.mustache Maven / Gradle / Ivy

package handlers
{{#operations}}
import (
    "{{{gitHost}}}/{{{gitUserId}}}/{{{gitRepoId}}}/models"
    "github.com/labstack/echo/v4"
    "net/http"
){{#operation}}

// {{nickname}} - {{{summary}}}
{{#isDeprecated}}
// Deprecated
{{/isDeprecated}}
func (c *Container) {{operationId}}(ctx echo.Context) error {
    return ctx.JSON(http.StatusOK, models.HelloWorld {
        Message: "Hello World",
    })
}
{{/operation}}{{/operations}}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy