├── .gitattributes ├── .github └── workflows │ └── release.yml ├── LICENSE ├── Makefile ├── README.md ├── go.mod ├── go.sum ├── iptest.go代码 ├── locations.json ├── main.go └── version /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/IP-SpeedTest/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/IP-SpeedTest/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/IP-SpeedTest/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/IP-SpeedTest/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/IP-SpeedTest/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/IP-SpeedTest/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/IP-SpeedTest/HEAD/go.sum -------------------------------------------------------------------------------- /iptest.go代码: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/IP-SpeedTest/HEAD/iptest.go代码 -------------------------------------------------------------------------------- /locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/IP-SpeedTest/HEAD/locations.json -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/IP-SpeedTest/HEAD/main.go -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | v1.0.4 2 | --------------------------------------------------------------------------------