...
1
2
3
4
5
6
7
8 package comment
9
10 var stdPkgs = []string{
11 "bufio",
12 "bytes",
13 "cmp",
14 "context",
15 "crypto",
16 "embed",
17 "encoding",
18 "errors",
19 "expvar",
20 "flag",
21 "fmt",
22 "hash",
23 "html",
24 "image",
25 "io",
26 "log",
27 "maps",
28 "math",
29 "mime",
30 "net",
31 "os",
32 "path",
33 "plugin",
34 "reflect",
35 "regexp",
36 "runtime",
37 "slices",
38 "sort",
39 "strconv",
40 "strings",
41 "sync",
42 "syscall",
43 "testing",
44 "time",
45 "unicode",
46 "unsafe",
47 }
48
View as plain text