Skip to content

Commit d3c1d4d

Browse files
committed
fix: update package name where imports are incompatible with source repo
1 parent 13d03b2 commit d3c1d4d

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ services with [manifold cli](https://github.com/manifoldco/manifold-cli).
88
[Code of Conduct](./CODE_OF_CONDUCT.md) |
99
[Contribution Guidelines](./.github/CONTRIBUTING.md)
1010

11-
[![GitHub release](https://img.shields.io/github/tag/manifoldco/promptui.svg?label=latest)](https://github.com/manifoldco/promptui/releases)
12-
[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](https://godoc.org/github.com/manifoldco/promptui)
11+
[![GitHub release](https://img.shields.io/github/tag/SimFG/promptui.svg?label=latest)](https://github.com/SimFG/promptui/releases)
12+
[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](https://godoc.org/github.com/SimFG/promptui)
1313
[![Travis](https://img.shields.io/travis/manifoldco/promptui/master.svg)](https://travis-ci.org/manifoldco/promptui)
14-
[![Go Report Card](https://goreportcard.com/badge/github.com/manifoldco/promptui)](https://goreportcard.com/report/github.com/manifoldco/promptui)
14+
[![Go Report Card](https://goreportcard.com/badge/github.com/SimFG/promptui)](https://goreportcard.com/report/github.com/SimFG/promptui)
1515
[![License](https://img.shields.io/badge/license-BSD-blue.svg)](./LICENSE.md)
1616

1717
## Overview
@@ -31,7 +31,7 @@ Promptui has two main input modes:
3131
- `Select` provides a list of options to choose from. Select supports
3232
pagination, search, detailed view and custom templates.
3333

34-
For a full list of options check [GoDoc](https://godoc.org/github.com/manifoldco/promptui).
34+
For a full list of options check [GoDoc](https://godoc.org/github.com/SimFG/promptui).
3535

3636
## Basic Usage
3737

@@ -45,7 +45,7 @@ import (
4545
"fmt"
4646
"strconv"
4747

48-
"github.com/manifoldco/promptui"
48+
"github.com/SimFG/promptui"
4949
)
5050

5151
func main() {
@@ -81,7 +81,7 @@ package main
8181
import (
8282
"fmt"
8383

84-
"github.com/manifoldco/promptui"
84+
"github.com/SimFG/promptui"
8585
)
8686

8787
func main() {
@@ -104,4 +104,4 @@ func main() {
104104

105105
### More Examples
106106

107-
See full list of [examples](https://github.com/manifoldco/promptui/tree/master/_examples)
107+
See full list of [examples](https://github.com/SimFG/promptui/tree/master/_examples)

_examples/checkbox/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/manifoldco/promptui"
6+
"github.com/SimFG/promptui"
77
)
88

99
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/manifoldco/promptui
1+
module github.com/SimFG/promptui
22

33
go 1.18
44

prompt.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"text/template"
88

99
"github.com/chzyer/readline"
10-
"github.com/manifoldco/promptui/screenbuf"
10+
"github.com/SimFG/promptui/screenbuf"
1111
)
1212

1313
// Prompt represents a single line text field input with options for validation and input masks.

select.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"text/template"
1010

1111
"github.com/chzyer/readline"
12-
"github.com/manifoldco/promptui/list"
13-
"github.com/manifoldco/promptui/screenbuf"
12+
"github.com/SimFG/promptui/list"
13+
"github.com/SimFG/promptui/screenbuf"
1414
)
1515

1616
// SelectedAdd is used internally inside SelectWithAdd when the add option is selected in select mode.

select_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"bytes"
55
"testing"
66

7-
"github.com/manifoldco/promptui/screenbuf"
7+
"github.com/SimFG/promptui/screenbuf"
88
)
99

1010
func TestSelectTemplateRender(t *testing.T) {

0 commit comments

Comments
 (0)