-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlearn-golang.code-workspace
85 lines (85 loc) · 1.52 KB
/
learn-golang.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"settings": {
"go.goroot": "~/.goenv/versions/1.22.0",
"go.gopath": "~/go/1.22.0",
"go.toolsGopath": "~/go/1.22.0"
},
"folders": [
{
"name": "root",
"path": "."
},
{
"name": "01-hello-world",
"path": "./01-hello-world"
},
{
"name": "02-integers",
"path": "./02-integers"
},
{
"name": "03-iteration",
"path": "./03-iteration"
},
{
"name": "04-arrays-and-slices",
"path": "./04-arrays-and-slices"
},
{
"name": "05-structs",
"path": "./05-structs"
},
{
"name": "06-pointers-and-errors",
"path": "./06-pointers-and-errors"
},
{
"name": "07-maps",
"path": "./07-maps"
},
{
"name": "08-dependency-injection",
"path": "./08-dependency-injection"
},
{
"name": "09-mocking",
"path": "./09-mocking"
},
{
"name": "10-concurrency",
"path": "./10-concurrency"
},
{
"name": "11-select",
"path": "./11-select"
},
{
"name": "12-reflection",
"path": "./12-reflection"
},
{
"name": "13-sync",
"path": "./13-sync"
},
{
"name": "14-context",
"path": "./14-context"
},
{
"name": "15-roman-numerals",
"path": "./15-roman-numerals"
},
{
"name": "16-math",
"path": "./16-math"
},
{
"name": "17-files",
"path": "./17-files"
},
{
"name": "18-templates",
"path": "./18-templates"
}
]
}