Skip to content

Commit

Permalink
Merge pull request #7 from antham/follow-go-mod-breaking-conventions
Browse files Browse the repository at this point in the history
Upgrade go mod path
  • Loading branch information
antham authored Jul 10, 2019
2 parents 6a8310d + 39acc43 commit 683fbb0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
8 changes: 2 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
module github.com/antham/strumt
module github.com/antham/strumt/v2

require (
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/testify v1.3.0
)
require github.com/stretchr/testify v1.3.0
2 changes: 1 addition & 1 deletion prompt_example_customize_output_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"io"
"strings"

"github.com/antham/strumt"
"github.com/antham/strumt/v2"
)

func Example_customizePromptOutput() {
Expand Down
2 changes: 1 addition & 1 deletion prompt_example_multiline_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"io/ioutil"

"github.com/antham/strumt"
"github.com/antham/strumt/v2"
)

func Example_multilinePrompt() {
Expand Down
2 changes: 1 addition & 1 deletion prompts_example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"io/ioutil"
"strconv"

"github.com/antham/strumt"
"github.com/antham/strumt/v2"
)

func Example() {
Expand Down

0 comments on commit 683fbb0

Please sign in to comment.