Documentation ¶
Index ¶
- Variables
- func BuildRequestPayload(signature string, payload map[string]interface{}) *bytes.Buffer
- func DebugDumpJSON(msg string, d interface{})
- func DebugDumpViper()
- func DisplayProfileData()
- func FailOnError(err error)
- func FailOnErrorWithMessage(err error, message string)
- func FileHash(filePath string) (string, error)
- func IsWSL() (bool, error)
- func LogTime(operation string)
- func Pluralize(base string, count int) string
- func SendRequest(signature string, method string, sendRequestTo url.URL, payload *bytes.Buffer) (*http.Response, error)
- func ShowError(err error)
- func ShowErrorWithMessage(err error, message string)
- func ShowWarning(warning string)
- func StringHash(s string) uint32
- type ExitCode
- type FileWatcher
- type InteractiveExitStatus
- type WatcherOptions
Constants ¶
This section is empty.
Variables ¶
var Timing []timeLog
Functions ¶
func BuildRequestPayload ¶ added in v0.2.0
BuildRequestPayload :: merges the provided payload with the standard payload that needs to be sent
func DebugDumpJSON ¶ added in v0.3.0
func DebugDumpJSON(msg string, d interface{})
functions specifically used for Debugging purposes.
func DebugDumpViper ¶ added in v0.3.0
func DebugDumpViper()
func DisplayProfileData ¶
func DisplayProfileData()
func FailOnError ¶
func FailOnError(err error)
func FailOnErrorWithMessage ¶
func IsWSL ¶ added in v0.2.0
IsWSL :: detects whether app is running in WSL environment refer to: https://github.com/Microsoft/WSL/issues/423#issuecomment-679190758
func Pluralize ¶ added in v0.2.2
Pluralize :: pluralizes a word (if applicable) based on provided count
func SendRequest ¶ added in v0.2.0
func SendRequest(signature string, method string, sendRequestTo url.URL, payload *bytes.Buffer) (*http.Response, error)
SendRequest ::
func ShowErrorWithMessage ¶
func ShowWarning ¶
func ShowWarning(warning string)
func StringHash ¶
Types ¶
type FileWatcher ¶ added in v0.4.0
type FileWatcher struct {
// contains filtered or unexported fields
}
func NewWatcher ¶ added in v0.4.0
func NewWatcher(opts *WatcherOptions) (*FileWatcher, error)
func (*FileWatcher) AddWatches ¶ added in v0.4.0
func (w *FileWatcher) AddWatches()
func (*FileWatcher) Close ¶ added in v0.4.0
func (w *FileWatcher) Close()
type InteractiveExitStatus ¶
InteractiveExitStatus :: exist status from the interative prompt
We exit go-prompt after every query (in order to manage the prompt history to only include complete queries) We therefore need to distinguish between:
a user requested exit (ctrl+D or .exit) - indicated by a non-nil exit code and restart=false and a value , go-prompt being terminated after a query completion and requiring restarting - indicated by restart=true