package app import ( "context" "fmt" ) type RunOptions struct{} func Run(context.Context, RunOptions) error { return fmt.Errorf("run command: %w", ErrNotImplemented) }