Add normalize input parsing

This commit is contained in:
2026-05-09 12:29:12 +00:00
parent 3679435063
commit c132f3fd5d
3 changed files with 382 additions and 0 deletions

View File

@@ -14,6 +14,10 @@ func Run(ctx context.Context, cfg config.NormalizeConfig) error {
return err
}
if _, err := ParseFile(cfg.InputFile); err != nil {
return err
}
// TODO: Implement transcript normalization transformation.
return fmt.Errorf("normalize command is not implemented yet")
}