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

8
monitor/go.mod Normal file
View File

@@ -0,0 +1,8 @@
module philologue.net/diachron/monitor
go 1.23.3
require (
github.com/fsnotify/fsnotify v1.9.0 // indirect
golang.org/x/sys v0.13.0 // indirect
)