├── .gitignore ├── .goreleaser.yml ├── README.md ├── go.mod ├── go.sum ├── main.go ├── main_test.go └── static └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | my.db 2 | dist/ 3 | wonitor 4 | -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rverton/wonitor/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rverton/wonitor/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rverton/wonitor/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rverton/wonitor/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rverton/wonitor/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rverton/wonitor/HEAD/main_test.go -------------------------------------------------------------------------------- /static/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rverton/wonitor/HEAD/static/screenshot.png --------------------------------------------------------------------------------