feat: Implement draft version of CLI package

This commit is contained in:
Faruk AYDIN
2022-02-26 00:29:37 +03:00
committed by Ömer Faruk Aydın
parent 059c039a8b
commit c732780672
16 changed files with 7625 additions and 146 deletions

View 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');
}
}