Skip to content

Commit 52982c8

Browse files
committed
Add go module proxy placeholder
1 parent f7b5ae6 commit 52982c8

File tree

5 files changed

+50
-0
lines changed

5 files changed

+50
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ This section includes exercises and small projects which illustrate the basics o
1717
- [Custom import paths](https://github.com/gophertuts/go-basics/blob/master/custom-import-paths)
1818
- [Package Management](https://github.com/gophertuts/go-basics/blob/master/package-management)
1919
- [Go modules](https://github.com/gophertuts/go-basics/blob/master/go-modules)
20+
- [Go module proxy](https://github.com/gophertuts/go-basics/blob/master/go-module-proxy)
2021
- Others topics are coming up...
2122

2223
### Installation
427 KB
Binary file not shown.

go-module-proxy/README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Go module proxy
2+
3+
4+
## Medium version
5+
6+
[Go module proxy](https://medium.com/@gophertuts/packages-in-go-df5438123548)
7+
8+
### More info
9+
10+
```bash
11+
go help importpath
12+
13+
go help goproxy
14+
```
15+
16+
## Resources
17+
18+
- [Go 1.5 vendor experiment](https://go.googlesource.com/proposal/+/master/design/25719-go15vendor.md)
19+
- [Vendor directories](https://golang.org/cmd/go/#hdr-Vendor_Directories)
20+
- [VGO module](https://research.swtch.com/vgo-module)
21+
- [Athens project](https://docs.gomods.io)
22+
- [Athens project - GitHub](https://github.com/gomods/athens)
23+
- [Athens docker image](https://docs.gomods.io)
24+
- [Go project structure](https://vsupalov.com/go-folder-structure/)
25+
- [Go project layout](https://github.com/golang-standards/project-layout)
26+
27+
## FEEDBACK ⚗
28+
29+
[GopherTuts TypeForm](http://feedback.gophertuts.com)
30+
31+
Back to
32+
[Go Basics](https://github.com/gophertuts/go-basics)
33+
34+
<img src="https://github.com/gophertuts/go-basics/raw/master/gophertuts.svg?sanitize=true" width="50px"/>

vendor-directory/README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,26 @@
11
# `vendor` directory in Go
22

3+
34
## Medium version
45

56
[Vendor directory in Go](https://medium.com/@gophertuts/packages-in-go-df5438123548)
67

8+
### More info
9+
10+
```bash
11+
go help importpath
12+
13+
go help goproxy
14+
```
15+
716
## Resources
817

18+
- [Go 1.5 vendor experiment](https://go.googlesource.com/proposal/+/master/design/25719-go15vendor.md)
19+
- [Vendor directories](https://golang.org/cmd/go/#hdr-Vendor_Directories)
20+
- [VGO module](https://research.swtch.com/vgo-module)
21+
- [Athens project](https://docs.gomods.io)
22+
- [Athens project - GitHub](https://github.com/gomods/athens)
23+
- [Athens docker image](https://docs.gomods.io)
924
- [Go project structure](https://vsupalov.com/go-folder-structure/)
1025
- [Go project layout](https://github.com/golang-standards/project-layout)
1126

70.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)