Rename monitor to master

This commit is contained in:
Michael Wolf
2026-01-01 12:30:58 -06:00
parent 3bece46638
commit a178536472
9 changed files with 2 additions and 2 deletions

11
master/printchanges.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
"fmt"
)
func printChanges(changes <-chan FileChange) {
for change := range changes {
fmt.Printf("[%s] %s\n", change.Operation, change.Path)
}
}