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:
Koernia 2024-04-25 22:15:21 +07:00 committed by GitHub
commit c313437e9e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 10 additions and 10 deletions

View File

@ -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

View File

@ -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

View File

@ -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() {

2
go.mod
View File

@ -1,4 +1,4 @@
module github.com/swaggo/gin-swagger
module github.com/adiatma85/custom-gin-swagger
go 1.17