kingoftime-cli/src/commands/hello/world.ts

20 lines
379 B
TypeScript
Raw Normal View History

2023-04-14 13:13:50 +00:00
import {Command} from '@oclif/core'
export default class World extends Command {
static description = 'Say hello world'
static examples = [
`<%= config.bin %> <%= command.id %>
hello world! (./src/commands/hello/world.ts)
`,
]
static flags = {}
static args = {}
async run(): Promise<void> {
this.log('hello world! (./src/commands/hello/world.ts)')
}
}