Add normalize command scaffold

This commit is contained in:
2026-05-09 12:26:47 +00:00
parent e6d3b4a46e
commit 3679435063
6 changed files with 339 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package normalize
import (
"context"
"fmt"
"gitea.maximumdirect.net/eric/seriatim/internal/config"
)
// Run validates command wiring for normalize and will later execute
// artifact-level normalization.
func Run(ctx context.Context, cfg config.NormalizeConfig) error {
if err := ctx.Err(); err != nil {
return err
}
// TODO: Implement transcript normalization transformation.
return fmt.Errorf("normalize command is not implemented yet")
}