Add normalize command scaffold
This commit is contained in:
19
internal/normalize/normalize.go
Normal file
19
internal/normalize/normalize.go
Normal 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")
|
||||
}
|
||||
Reference in New Issue
Block a user