Skip to content

Commit f18476c

Browse files
committed
docs(shell): readme sample router options
1 parent a7452a2 commit f18476c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/shell/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@ shell({
4545
},
4646
commands: {
4747
start: {
48-
description: "Start something",
48+
description: "Start one or multiple applications",
49+
main: "apps",
50+
handler: ({ params, stdout }) => {
51+
stdout.write(`Application: ${params.apps.join(" ")}`);
52+
},
4953
},
5054
},
5155
}).route();

0 commit comments

Comments
 (0)