Skip to content

Commit b8fa4c7

Browse files
committed
fix import path for module
1 parent 1c52a1a commit b8fa4c7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
ishell is an interactive shell library for creating interactive cli applications.
44

5-
[![Documentation](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat-square)](https://godoc.org/github.com/abiosoft/ishell)
5+
[![Go Reference](https://pkg.go.dev/badge/github.com/abiosoft/ishell/v2.svg)](https://pkg.go.dev/github.com/abiosoft/ishell/v2)
66
[![Go Report Card](https://goreportcard.com/badge/github.com/abiosoft/ishell)](https://goreportcard.com/report/github.com/abiosoft/ishell)
77

88
## Usage
99

1010
```go
1111
import "strings"
12-
import "github.com/abiosoft/ishell"
12+
import "github.com/abiosoft/ishell/v2"
1313

1414
func main(){
1515
// create new shell.

example/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
"time"
99

10-
"github.com/abiosoft/ishell"
10+
"github.com/abiosoft/ishell/v2"
1111
"github.com/fatih/color"
1212
)
1313

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/abiosoft/ishell
1+
module github.com/abiosoft/ishell/v2
22

33
go 1.16
44

0 commit comments

Comments
 (0)