v0.2.0 #3

Merged
kor-elf merged 22 commits from develop into main 2026-04-26 16:50:47 +05:00
Showing only changes of commit b36479c0ae - Show all commits
+12
View File
@@ -23,9 +23,21 @@ type BatchBuilder interface {
// Build returns a batch of commands.
Build() Batch
// Close closes the batch.
Close() error
}
type Batch interface {
// Args returns the arguments of the batch.
Args() []string
// Check checks the validity of the batch.
Check(command Command) error
// Close closes the batch.
Close() error
// MoveFile moves the batch file to the specified path.
MoveFile(path string) error
}