We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit fbb1f48Copy full SHA for fbb1f48
.gitignore
@@ -0,0 +1,19 @@
1
+.idea/
2
+.DS_Store
3
+output/
4
+
5
+# Binaries for programs and plugins
6
+*.exe
7
+*.exe~
8
+*.dll
9
+*.so
10
+*.dylib
11
12
+# Test binary, built with `go test -c`
13
+*.test
14
15
+# Output of the go coverage tool, specifically when used with LiteIDE
16
+*.out
17
18
+# Dependency directories (remove the comment below to include it)
19
+# vendor/
README.md
@@ -0,0 +1,4 @@
+# Go System Proxy Windows系统代理配置
+通过系统调用的方式实现Windows系统的代理配置。
go.mod
@@ -0,0 +1,3 @@
+module gosysproxy
+go 1.14
main.go
@@ -0,0 +1,6 @@
+// +build windows
+// windows系统代理配置
+package gosysporxy
0 commit comments