fork of whitequark.org/git-pages with mods for tangled
at main 156 B view raw
1//go:build !unix 2 3package git_pages 4 5func OnReload(handler func()) { 6 // not implemented 7} 8 9func WaitForInterrupt() { 10 for { 11 // Ctrl+C not supported 12 } 13}