├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── go.mod ├── go.sum ├── gui.go └── main.go /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mik3y/flightmon/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mik3y/flightmon/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mik3y/flightmon/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mik3y/flightmon/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mik3y/flightmon/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mik3y/flightmon/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mik3y/flightmon/HEAD/go.sum -------------------------------------------------------------------------------- /gui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mik3y/flightmon/HEAD/gui.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mik3y/flightmon/HEAD/main.go --------------------------------------------------------------------------------