mirror of
https://github.com/strongdm/comply
synced 2024-11-05 23:45:25 +00:00
7468711b3b
Releases after github.com/xanzy/go-gitlab@v0.31.0 introduce breaking changes to the NewClient call. Addresses #94
28 lines
1.0 KiB
Go
28 lines
1.0 KiB
Go
// Package promptui is a library providing a simple interface to create command-line prompts for go.
|
|
// It can be easily integrated into spf13/cobra, urfave/cli or any cli go application.
|
|
//
|
|
// promptui has two main input modes:
|
|
//
|
|
// Prompt provides a single line for user input. It supports optional live validation,
|
|
// confirmation and masking the input.
|
|
//
|
|
// Select provides a list of options to choose from. It supports pagination, search,
|
|
// detailed view and custom templates.
|
|
package promptui
|
|
|
|
import "errors"
|
|
|
|
// ErrEOF is the error returned from prompts when EOF is encountered.
|
|
var ErrEOF = errors.New("^D")
|
|
|
|
// ErrInterrupt is the error returned from prompts when an interrupt (ctrl-c) is
|
|
// encountered.
|
|
var ErrInterrupt = errors.New("^C")
|
|
|
|
// ErrAbort is the error returned when confirm prompts are supplied "n"
|
|
var ErrAbort = errors.New("")
|
|
|
|
// ValidateFunc is a placeholder type for any validation functions that validates a given input. It should return
|
|
// a ValidationError if the input is not valid.
|
|
type ValidateFunc func(string) error
|