package app import ( "context" "fmt" ) type InspectOptions struct { Path string } func Inspect(context.Context, InspectOptions) error { return fmt.Errorf("inspect command: %w", ErrNotImplemented) }