handler

package module
v0.0.0-...-2b2810b Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 13, 2021 License: MIT Imports: 4 Imported by: 0

README

gin-swagger-files

Go Go Report Card

Alternative to github.com/swaggo/files that provides support for //go:embed, and multiple swagger UI versions.

Example usage

This package is a drop-in replacement for github.com/swaggo/files and will work with Go1.16+ projects. To use it, replace the github.com/swaggo/files with github.com/tylfin/gin-swagger-files like this:

package main

import (
    "github.com/gin-gonic/gin"
    swaggerFiles "github.com/tylfin/gin-swagger-files"
    ginSwagger "github.com/swaggo/gin-swagger"

    _ "github.com/swaggo/gin-swagger/example/basic/docs" // docs is generated by Swag CLI, you have to import it.
)

// @title Swagger Example API
// @version 1.0
// @description This is a sample server Petstore server.
// @termsOfService http://swagger.io/terms/

// @contact.name API Support
// @contact.url http://www.swagger.io/support
// @contact.email support@swagger.io

// @license.name Apache 2.0
// @license.url http://www.apache.org/licenses/LICENSE-2.0.html

// @host petstore.swagger.io
// @BasePath /v2
func main() {
    r := gin.New()

    url := ginSwagger.URL("http://localhost:8080/swagger/doc.json") // The url pointing to API definition
    r.GET("/swagger/*any", ginSwagger.WrapHandler(swaggerFiles.Handler, url))

    r.Run()
}

Updating the version

To update the Swagger UI version, copy the contents of the swagger-api/swagger-ui dist folder into the dist folder here. This will automatically be bundled into the library at build time.

The version should be tagged appropriately like 3.51.1.

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// Handler is used to server files through an http.Handler
	Handler *webdav.Handler
)

Functions

This section is empty.

Types

This section is empty.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL