├── .gitignore ├── .goreleaser.yml ├── LICENSE ├── README.md ├── api ├── restv1.go └── restv1client.go ├── go.mod ├── go.sum └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | pgdash 3 | -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidloop/pgdash/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidloop/pgdash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidloop/pgdash/HEAD/README.md -------------------------------------------------------------------------------- /api/restv1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidloop/pgdash/HEAD/api/restv1.go -------------------------------------------------------------------------------- /api/restv1client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidloop/pgdash/HEAD/api/restv1client.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidloop/pgdash/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidloop/pgdash/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidloop/pgdash/HEAD/main.go --------------------------------------------------------------------------------