Implemented the initial Go framework

This commit is contained in:
2026-04-26 13:03:07 -05:00
parent f8a40ea47c
commit 4e027263a4
19 changed files with 1353 additions and 0 deletions

18
internal/cli/root.go Normal file
View File

@@ -0,0 +1,18 @@
package cli
import (
"github.com/spf13/cobra"
)
// NewRootCommand builds the seriatim command tree.
func NewRootCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "seriatim",
Short: "Merge per-speaker transcripts into a chronological transcript",
SilenceErrors: true,
SilenceUsage: true,
}
cmd.AddCommand(newMergeCommand())
return cmd
}