Initialize narratio Go module and CLI scaffold

This commit is contained in:
2026-05-02 10:37:38 -05:00
parent 48c51e1c77
commit 902e6bc994
42 changed files with 1486 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
// Package audita declares the adapter contract for transcript polishing.
package audita
import "context"
// Runner is a placeholder adapter interface for audita invocation.
type Runner interface {
Run(ctx context.Context, req PolishRequest) (PolishResult, error)
}
// PolishRequest is a placeholder polish input.
type PolishRequest struct {
MergedTranscriptPath string
OutputPath string
}
// PolishResult is a placeholder polish output.
type PolishResult struct {
ProcessedPath string
}