Skip to content

Commit fbb1f48

Browse files
first commit
0 parents  commit fbb1f48

File tree

4 files changed

+32
-0
lines changed

4 files changed

+32
-0
lines changed

.gitignore

+19
Original file line numberDiff line numberDiff line change
@@ -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

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Go System Proxy Windows系统代理配置
2+
3+
4+
通过系统调用的方式实现Windows系统的代理配置。

go.mod

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module gosysproxy
2+
3+
go 1.14

main.go

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// +build windows
2+
3+
// windows系统代理配置
4+
package gosysporxy
5+
6+

0 commit comments

Comments
 (0)