1import { cli } from 'npm:gunshi@0.17.0'
2
3export default {
4 async run(args: string[]) {
5 await cli(args, {
6 options: {
7 name: {
8 type: "string",
9 default: "world",
10 }
11 },
12 run: (ctx) => {
13 console.log(`Hello ${ctx.values.name}!`)
14 }
15 })
16 }
17}