├── .gitignore ├── Dockerfile ├── README.md ├── block.txt ├── cn.txt ├── common.go ├── go.mod ├── main.go └── wbuild.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechen163/dohproxy/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechen163/dohproxy/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechen163/dohproxy/HEAD/README.md -------------------------------------------------------------------------------- /block.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechen163/dohproxy/HEAD/cn.txt -------------------------------------------------------------------------------- /common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechen163/dohproxy/HEAD/common.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mikechen163/dohproxy 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechen163/dohproxy/HEAD/main.go -------------------------------------------------------------------------------- /wbuild.sh: -------------------------------------------------------------------------------- 1 | CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -ldflags="-s -w" 2 | --------------------------------------------------------------------------------