Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ArgumentModuleMessage = ` ` + wordwrap.WrapString("Did you misspell the command? Run "+color.HiGreenString("fossa -h")+" to view supported commands", width) + ` Are you trying to scan a single module? Try: fossa [global options] <package_type>:<target> For example: ` + color.GreenString("fossa --show-output golang:modulename")
View Source
var NoAPIKeyMessage = ` ` + wordwrap.WrapString("Running `fossa analyze` performs a dependency analysis and uploads the result to FOSSA. To run an analysis without uploading results, run:", width) + ` ` + color.HiGreenString("fossa analyze --output") + ` ` + wordwrap.WrapString("You can provide your API key by setting the $FOSSA_API_KEY environment variable. For example, try running:", width) + ` ` + color.HiGreenString("FOSSA_API_KEY=<YOUR_API_KEY_HERE> $command") + ` ` + wordwrap.WrapString("You can create an API key for your FOSSA account at:", width) + ` ` + color.HiBlueString("app.fossa.com/account/settings/integrations/api_tokens") + ` `
View Source
var NotImplementedMessage = `This code path has not yet been implemented.`
View Source
var ReportBugMessage = ` ` + color.HiYellowString("REPORTING A BUG:") + ` ` + wordwrap.WrapString("Please try troubleshooting before filing a bug. If the suggestions do not help you can file a bug at "+color.HiBlueString("https://github.com/fossas/fossa-cli/issues/new")+".", width) + ` ` + wordwrap.WrapString("Please attach the debug logs from:", width) + ` ` + color.HiGreenString("fossa <cmd> --debug") + ` ` + wordwrap.WrapString("For additional support, contact "+color.MagentaString("support@fossa.com")+".", width)
Functions ¶
Types ¶
type Error ¶
type Error struct { ExitCode int Cause error // Base error. Type Type // Type helps us tell the user to log an issue, go to docs, etc. Message string // Help message for the user, contact support, opening an issue, etc. Troubleshooting string // Simple solution or debugging instructions. Link string // Link to documentation or reference information. }
Error is the fossa implementation of errors for providing user-friendly information.
func NotImplementedError ¶ added in v1.0.0
func NotImplementedError() *Error
NotImplemented should be used to signify that a code path is not yet implemented.
func UnknownError ¶ added in v0.7.34
UnknownError creates a simple fossa error using an existing error and additional context.
Click to show internal directories.
Click to hide internal directories.