cliquiz

package
v0.14.1-0...-8b31b97 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 13, 2021 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Overview

Package cliquiz is a tool to collect answers from the users on cli.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Ask

func Ask(question ...Question) error

Ask asks questions and collect answers.

func ValuesFromFlagsOrAsk

func ValuesFromFlagsOrAsk(fset *pflag.FlagSet, title string, flags ...Flag) (values map[string]string, err error)

ValuesFromFlagsOrAsk returns values of flags within map[string]string where map's key is the name of the flag and value is flag's value. when provided, values are collected through command otherwise they're asked to user by prompting. title used as a message while prompting.

Types

type Flag

type Flag struct {
	Name       string
	IsRequired bool
}

Flag represents a cmd flag.

func NewFlag

func NewFlag(name string, isRequired bool) Flag

NewFlag creates a new flag.

type Option

type Option func(*Question)

Option configures Question.

func DefaultAnswer

func DefaultAnswer(answer interface{}) Option

DefaultAnswer sets a default answer to Question.

func HideAnswer

func HideAnswer() Option

HideAnswer hides the answer to prevent secret information being leaked.

func Required

func Required() Option

Required marks the answer as required.

type Question

type Question struct {
	// contains filtered or unexported fields
}

Question holds information on what to ask to user and where the answer stored at.

func NewQuestion

func NewQuestion(question string, answer interface{}, options ...Option) Question

NewQuestion creates a new question.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL