Add finding CLI commands

Add prb finding subcommands: create, list, view, update, and delete.
Register the finding command group in the root command and update
the factory to expose FindingService.

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2026-03-17 00:38:35 +01:00
parent 69ab9c60cd
commit ad0cf38e76
8 changed files with 940 additions and 2 deletions

View File

@@ -21,6 +21,6 @@ import (
type Factory struct {
IOStreams *iostreams.IOStreams
Version string
Config func() (*config.Config, error)
Version string
Config func() (*config.Config, error)
}