Add first cut at golang monitor program

This commit is contained in:
Michael Wolf
2026-01-01 12:26:54 -06:00
parent 4257a9b615
commit 3bece46638
8 changed files with 238 additions and 0 deletions

6
monitor/filechange.go Normal file
View File

@@ -0,0 +1,6 @@
package main
type FileChange struct {
Path string
Operation string
}