File tree 6 files changed +5
-5
lines changed
6 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -13,14 +13,9 @@ leetcode is a tool for managing leetcode source code.
13
13
Usage:
14
14
leetcode <command> [arguments]
15
15
The commands are:
16
- readme build README.md file
17
- page build index.md file
18
- tag build all tags file
19
- helper build helper file
20
16
question build problem solution file
21
17
open open a problem solution in browser
22
18
test run go test
23
- description build all problems description file
24
19
update update or upgrade self
25
20
clean remove cached files
26
21
version print leetcode version
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ var CmdDescription = &base.Command{
15
15
UsageLine : "description" ,
16
16
Short : "build all problems description file" ,
17
17
Long : "build all problems README.md file." ,
18
+ Hidden : true ,
18
19
}
19
20
20
21
func runDescription (cmd * base.Command , args []string ) {
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ var CmdHelper = &base.Command{
14
14
UsageLine : "helper" ,
15
15
Short : "build helper file" ,
16
16
Long : "build helper README.md file." ,
17
+ Hidden : true ,
17
18
}
18
19
19
20
func runHelper (cmd * base.Command , args []string ) {
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ var CmdPage = &base.Command{
12
12
UsageLine : "page" ,
13
13
Short : "build index.md file" ,
14
14
Long : "build page file(index.md)." ,
15
+ Hidden : true ,
15
16
}
16
17
17
18
func runPage (cmd * base.Command , args []string ) {
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ var CmdReadme = &base.Command{
31
31
UsageLine : "readme" ,
32
32
Short : "build README.md file" ,
33
33
Long : "build README.md file." ,
34
+ Hidden : true ,
34
35
}
35
36
36
37
var (
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ var CmdTag = &base.Command{
17
17
UsageLine : "tag" ,
18
18
Short : "build all tags file" ,
19
19
Long : "build all tags README.md file." ,
20
+ Hidden : true ,
20
21
}
21
22
22
23
func runTag (cmd * base.Command , args []string ) {
You can’t perform that action at this time.
0 commit comments