Change the name of the module (#3)
**Describe the PR** Change the name of the module according to the repository
This commit is contained in:
commit
c313437e9e
|
|
@ -1,13 +1,13 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
ginSwagger "github.com/adiatma85/custom-gin-swagger"
|
||||
"github.com/gin-gonic/gin"
|
||||
swaggerFiles "github.com/swaggo/files"
|
||||
"github.com/swaggo/gin-swagger"
|
||||
|
||||
"github.com/swaggo/gin-swagger/example/basic/api"
|
||||
"github.com/adiatma85/custom-gin-swagger/example/basic/api"
|
||||
|
||||
_ "github.com/swaggo/gin-swagger/example/basic/docs"
|
||||
_ "github.com/adiatma85/custom-gin-swagger/example/basic/docs"
|
||||
)
|
||||
|
||||
// @title Swagger Example API
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
ginSwagger "github.com/adiatma85/custom-gin-swagger"
|
||||
"github.com/gin-contrib/gzip"
|
||||
"github.com/gin-gonic/gin"
|
||||
swaggerFiles "github.com/swaggo/files"
|
||||
"github.com/swaggo/gin-swagger"
|
||||
|
||||
_ "github.com/swaggo/gin-swagger/example/basic/docs"
|
||||
_ "github.com/adiatma85/custom-gin-swagger/example/basic/docs"
|
||||
)
|
||||
|
||||
// @title Swagger Example API
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
ginSwagger "github.com/adiatma85/custom-gin-swagger"
|
||||
v1 "github.com/adiatma85/custom-gin-swagger/example/multiple/api/v1"
|
||||
v2 "github.com/adiatma85/custom-gin-swagger/example/multiple/api/v2"
|
||||
_ "github.com/adiatma85/custom-gin-swagger/example/multiple/docs"
|
||||
"github.com/gin-gonic/gin"
|
||||
swaggerFiles "github.com/swaggo/files"
|
||||
ginSwagger "github.com/swaggo/gin-swagger"
|
||||
v1 "github.com/swaggo/gin-swagger/example/multiple/api/v1"
|
||||
v2 "github.com/swaggo/gin-swagger/example/multiple/api/v2"
|
||||
_ "github.com/swaggo/gin-swagger/example/multiple/docs"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue