File tree Expand file tree Collapse file tree 6 files changed +5
-5
lines changed Expand file tree Collapse file tree 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.
1313Usage:
1414 leetcode <command> [arguments]
1515The 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
2016 question build problem solution file
2117 open open a problem solution in browser
2218 test run go test
23- description build all problems description file
2419 update update or upgrade self
2520 clean remove cached files
2621 version print leetcode version
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ var CmdDescription = &base.Command{
1515 UsageLine : "description" ,
1616 Short : "build all problems description file" ,
1717 Long : "build all problems README.md file." ,
18+ Hidden : true ,
1819}
1920
2021func runDescription (cmd * base.Command , args []string ) {
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ var CmdHelper = &base.Command{
1414 UsageLine : "helper" ,
1515 Short : "build helper file" ,
1616 Long : "build helper README.md file." ,
17+ Hidden : true ,
1718}
1819
1920func runHelper (cmd * base.Command , args []string ) {
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ var CmdPage = &base.Command{
1212 UsageLine : "page" ,
1313 Short : "build index.md file" ,
1414 Long : "build page file(index.md)." ,
15+ Hidden : true ,
1516}
1617
1718func runPage (cmd * base.Command , args []string ) {
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ var CmdReadme = &base.Command{
3131 UsageLine : "readme" ,
3232 Short : "build README.md file" ,
3333 Long : "build README.md file." ,
34+ Hidden : true ,
3435}
3536
3637var (
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ var CmdTag = &base.Command{
1717 UsageLine : "tag" ,
1818 Short : "build all tags file" ,
1919 Long : "build all tags README.md file." ,
20+ Hidden : true ,
2021}
2122
2223func runTag (cmd * base.Command , args []string ) {
You can’t perform that action at this time.
0 commit comments