| 878 | } |
| 879 | |
| 880 | void createListCommand(SimpleCLI *cli) { |
| 881 | Command cmd = cli->addCommand("ls,dir", listCallback); |
| 882 | cmd.addPosArg("filepath", ""); |
| 883 | } |
| 884 | |
| 885 | void createReadCommand(SimpleCLI *cli) { |
| 886 | Command cmd = cli->addCommand("cat,type", readCallback); |
no outgoing calls
no test coverage detected