From fba7c4ce206e68ea9529c0641e115f98404d816a Mon Sep 17 00:00:00 2001 From: Noah Zoschke Date: Wed, 30 Jul 2025 07:02:27 -0700 Subject: [PATCH] format --- input.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/input.go b/input.go index f7d80d8..61c96b3 100644 --- a/input.go +++ b/input.go @@ -28,8 +28,8 @@ type InputCmd struct { // InputCreateCmd provides a command to create an input. type InputCreateCmd struct { - Kind string `arg:"" help:"Input kind (e.g., coreaudio_input_capture, macos-avcapture)." required:""` Name string `arg:"" help:"Name for the input." required:""` + Kind string `arg:"" help:"Input kind (e.g., coreaudio_input_capture, macos-avcapture)." required:""` } // InputDeleteCmd provides a command to delete an input. @@ -78,7 +78,7 @@ func (cmd *InputDeleteCmd) Run(ctx *context) error { return fmt.Errorf("failed to delete input: %w", err) } - fmt.Fprintf(ctx.Out, "Deleted input: %s\n", ctx.Style.Highlight(cmd.Name)) + fmt.Fprintf(ctx.Out, "Deleted %s\n", ctx.Style.Highlight(cmd.Name)) return nil }