13 lines
342 B
TypeScript
13 lines
342 B
TypeScript
|
import { BaseCommand } from '@adonisjs/core/ace'
|
||
|
import type { CommandOptions } from '@adonisjs/core/types/ace'
|
||
|
|
||
|
export default class IndexTest extends BaseCommand {
|
||
|
static commandName = 'index:test'
|
||
|
static description = ''
|
||
|
|
||
|
static options: CommandOptions = {}
|
||
|
|
||
|
async run() {
|
||
|
this.logger.info('Hello world from "IndexTest"')
|
||
|
}
|
||
|
}
|