feat: add basic forked shell record to in/out files

This commit is contained in:
2026-03-18 11:14:06 +00:00
parent d331b0825d
commit 081e338744
9 changed files with 386 additions and 38 deletions
+11
View File
@@ -0,0 +1,11 @@
package miro
var (
ErrRecordingDiscarded = RecordingDiscardedError{}
)
type RecordingDiscardedError struct{}
func (RecordingDiscardedError) Error() string {
return "recording discarded"
}