Skip to content

Commit d4289eb

Browse files
committed
add /v2 at end of go.mod and more
1 parent 71cdd12 commit d4289eb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ In `main.go`
3939
```go
4040
package main
4141

42-
import "github.com/Delta456/box-cli-maker"
42+
import "github.com/Delta456/box-cli-maker/v2"
4343

4444
func main() {
4545
Box := box.New(box.Config{Px: 2, Py: 5, Type: "Single", Color: "Cyan"})
@@ -53,7 +53,7 @@ func main() {
5353
- `Px` : Horizontal Padding
5454
- `Py` : Vertical Padding
5555
- `ContentAlign` : Align the content inside the Box i.e. `Center`, `Left` and `Right`
56-
- `Type`: Type of Box [*click this for more info*](./README.md/#box-types)
56+
- `Type`: Type of Box (by default it's Single) [*click this for more info*](./README.md/#box-types)
5757
- `TitlePos` : Position of the Title i.e. `Inside`, `Top` and `Bottom` [*click this for more info*](./README.md/#title-positions)
5858
- `Color` : Color of the Box [*click this for more info*](./README.md/#color-types)
5959

@@ -147,7 +147,7 @@ Using it:
147147
```go
148148
package main
149149

150-
import "github.com/Delta456/box-cli-maker"
150+
import "github.com/Delta456/box-cli-maker/v2"
151151

152152
func main() {
153153
config := box.Config{Px: 2, Py: 3, Type: "", TitlePos: "Inside"}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/Delta456/box-cli-maker
1+
module github.com/Delta456/box-cli-maker/v2
22

33
go 1.15
44

0 commit comments

Comments
 (0)