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

go-gin-server.interface-api.mustache Maven / Gradle / Ivy

There is a newer version: 7.9.0
Show newest version
{{>partial_header}}
package {{packageName}}

{{#operations}}
import (
	"github.com/gin-gonic/gin"
)

type {{classname}} interface {


    {{#operation}}
    // {{nickname}} {{httpMethod}} {{{basePathWithoutHost}}}{{{path}}}{{#summary}}
    // {{{.}}} {{/summary}}
    {{#isDeprecated}}
    // Deprecated
    {{/isDeprecated}}
     {{nickname}}(c *gin.Context)

    {{/operation}}
    {{/operations}}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy