feat: Implement draft version of CLI package
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
059c039a8b
commit
c732780672
9
packages/cli/src/commands/start.ts
Normal file
9
packages/cli/src/commands/start.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Command } from '@oclif/core';
|
||||
|
||||
export default class Start extends Command {
|
||||
static description = 'Say hello world';
|
||||
|
||||
async run(): Promise<void> {
|
||||
this.log('hello world from start script');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user