├── .github └── workflows │ └── fetch-and-release.yml ├── LICENSE ├── README.md ├── fetch ├── api.go ├── asn_delegated.go └── fetch_prefixes.go ├── go.mod ├── go.sum └── main.go /.github/workflows/fetch-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compassvpn/prefix-fetcher/HEAD/.github/workflows/fetch-and-release.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compassvpn/prefix-fetcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compassvpn/prefix-fetcher/HEAD/README.md -------------------------------------------------------------------------------- /fetch/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compassvpn/prefix-fetcher/HEAD/fetch/api.go -------------------------------------------------------------------------------- /fetch/asn_delegated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compassvpn/prefix-fetcher/HEAD/fetch/asn_delegated.go -------------------------------------------------------------------------------- /fetch/fetch_prefixes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compassvpn/prefix-fetcher/HEAD/fetch/fetch_prefixes.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compassvpn/prefix-fetcher/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compassvpn/prefix-fetcher/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compassvpn/prefix-fetcher/HEAD/main.go --------------------------------------------------------------------------------