Skip to content

Commit

Permalink
fix import path for module
Browse files Browse the repository at this point in the history
  • Loading branch information
abiosoft committed Jun 2, 2021
1 parent 1c52a1a commit b8fa4c7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

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

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

## Usage

```go
import "strings"
import "github.com/abiosoft/ishell"
import "github.com/abiosoft/ishell/v2"

func main(){
// create new shell.
Expand Down
2 changes: 1 addition & 1 deletion example/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"time"

"github.com/abiosoft/ishell"
"github.com/abiosoft/ishell/v2"
"github.com/fatih/color"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/abiosoft/ishell
module github.com/abiosoft/ishell/v2

go 1.16

Expand Down

0 comments on commit b8fa4c7

Please sign in to comment.