@@ -9,7 +9,7 @@ This package does not generate openapi spec file. Check [this example](https://g
9
9
## Usage
10
10
11
11
``` go
12
- import " github.com/rookie-luochao /go-openapi-ui/pkg/doc"
12
+ import " github.com/openapi-ui /go-openapi-ui/pkg/doc"
13
13
14
14
...
15
15
@@ -28,7 +28,7 @@ doc := doc.Doc{
28
28
``` go
29
29
import (
30
30
" net/http"
31
- " github.com/rookie-luochao /go-openapi-ui/pkg/doc"
31
+ " github.com/openapi-ui /go-openapi-ui/pkg/doc"
32
32
)
33
33
34
34
...
@@ -41,8 +41,8 @@ http.ListenAndServe(address, doc.Handler())
41
41
``` go
42
42
import (
43
43
" github.com/gin-gonic/gin"
44
- " github.com/rookie-luochao /go-openapi-ui/pkg/doc"
45
- ginopenapiui " github.com/rookie-luochao /go-openapi-ui/pkg/middleware/gin"
44
+ " github.com/openapi-ui /go-openapi-ui/pkg/doc"
45
+ ginopenapiui " github.com/openapi-ui /go-openapi-ui/pkg/middleware/gin"
46
46
)
47
47
48
48
...
@@ -56,8 +56,8 @@ r.Use(ginopenapiui.New(doc))
56
56
``` go
57
57
import (
58
58
" github.com/labstack/echo/v4"
59
- " github.com/rookie-luochao /go-openapi-ui/pkg/doc"
60
- echoopenapiui " github.com/rookie-luochao /go-openapi-ui/pkg/middleware/echo"
59
+ " github.com/openapi-ui /go-openapi-ui/pkg/doc"
60
+ echoopenapiui " github.com/openapi-ui /go-openapi-ui/pkg/middleware/echo"
61
61
)
62
62
63
63
...
@@ -71,8 +71,8 @@ r.Use(echoopenapiui.New(doc))
71
71
``` go
72
72
import (
73
73
" github.com/gofiber/fiber/v2"
74
- " github.com/rookie-luochao /go-openapi-ui/pkg/doc"
75
- fiberopenapiui " github.com/rookie-luochao /go-openapi-ui/pkg/middleware/fiber"
74
+ " github.com/openapi-ui /go-openapi-ui/pkg/doc"
75
+ fiberopenapiui " github.com/openapi-ui /go-openapi-ui/pkg/middleware/fiber"
76
76
)
77
77
78
78
...
0 commit comments