Skip to content

Commit 2f3d428

Browse files
committed
update fork
1 parent 436b34e commit 2f3d428

File tree

9 files changed

+16
-18
lines changed

9 files changed

+16
-18
lines changed

README.md

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

33
Interactive prompt for command-line applications.
44

5-
We built Promptui because we wanted to make it easy and fun to explore cloud
6-
services with [manifold cli](https://github.com/manifoldco/manifold-cli).
5+
Fork from [manifoldco/promptui](https://github.com/manifoldco/promptui) and build for [trzsz-ssh ( tssh )](https://github.com/trzsz/trzsz-ssh).
76

87
[Code of Conduct](./CODE_OF_CONDUCT.md) |
98
[Contribution Guidelines](./.github/CONTRIBUTING.md)
109

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)
13-
[![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)
10+
[![GitHub release](https://img.shields.io/github/tag/trzsz/promptui.svg?label=latest)](https://github.com/trzsz/promptui/tags)
11+
[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](https://godoc.org/github.com/trzsz/promptui)
12+
[![Go Report Card](https://goreportcard.com/badge/github.com/trzsz/promptui)](https://goreportcard.com/report/github.com/trzsz/promptui)
1513
[![License](https://img.shields.io/badge/license-BSD-blue.svg)](./LICENSE.md)
1614

1715
## Overview
@@ -31,7 +29,7 @@ Promptui has two main input modes:
3129
- `Select` provides a list of options to choose from. Select supports
3230
pagination, search, detailed view and custom templates.
3331

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

3634
## Basic Usage
3735

@@ -45,7 +43,7 @@ import (
4543
"fmt"
4644
"strconv"
4745

48-
"github.com/manifoldco/promptui"
46+
"github.com/trzsz/promptui"
4947
)
5048

5149
func main() {
@@ -81,7 +79,7 @@ package main
8179
import (
8280
"fmt"
8381

84-
"github.com/manifoldco/promptui"
82+
"github.com/trzsz/promptui"
8583
)
8684

8785
func main() {
@@ -104,4 +102,4 @@ func main() {
104102

105103
### More Examples
106104

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

_examples/confirm/main.go

+1-1
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/trzsz/promptui"
77
)
88

99
func main() {

_examples/custom_prompt/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"strconv"
66

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

1010
type pepper struct {

_examples/custom_select/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"strings"
66

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

1010
type pepper struct {

_examples/prompt/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"strconv"
77

8-
"github.com/manifoldco/promptui"
8+
"github.com/trzsz/promptui"
99
)
1010

1111
func main() {

_examples/prompt_default/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"os/user"
77

8-
"github.com/manifoldco/promptui"
8+
"github.com/trzsz/promptui"
99
)
1010

1111
func main() {

_examples/prompt_password/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"errors"
55
"fmt"
66

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

1010
func main() {

_examples/select/main.go

+1-1
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/trzsz/promptui"
77
)
88

99
func main() {

_examples/select_add/main.go

+1-1
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/trzsz/promptui"
77
)
88

99
func main() {

0 commit comments

Comments
 (0)