Files
go-cv/go.mod
Bryan Joshua Pedini e3c6c25624 feat: implement serve mode with file watching
- Add fsnotify for file watching in serve mode
- Create watcher.go for content directory monitoring
- Update serve mode to generate initial output and watch for changes
- Add route to serve generated HTML files from output directory
- File changes trigger automatic regeneration

Co-Authored-By: Claude (glm-5) <noreply@anthropic.com>
2026-03-05 02:21:50 +01:00

15 lines
264 B
Modula-2

module git.bjphoster.com/source/go-cv
go 1.22.2
require (
github.com/gorilla/mux v1.8.1
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/fsnotify/fsnotify v1.9.0 // indirect
github.com/yuin/goldmark v1.7.16 // indirect
golang.org/x/sys v0.13.0 // indirect
)