2024-04-23 17:36:45 +00:00
|
|
|
import { BaseCommand } from '@adonisjs/core/ace';
|
|
|
|
import type { CommandOptions } from '@adonisjs/core/types/ace';
|
2024-03-14 19:25:27 +00:00
|
|
|
|
|
|
|
export default class IndexTest extends BaseCommand {
|
2024-04-23 17:36:45 +00:00
|
|
|
static commandName = 'index:test';
|
|
|
|
static description = '';
|
2024-03-14 19:25:27 +00:00
|
|
|
|
2024-04-23 17:36:45 +00:00
|
|
|
static options: CommandOptions = {};
|
2024-03-14 19:25:27 +00:00
|
|
|
|
2024-04-23 17:36:45 +00:00
|
|
|
async run() {
|
|
|
|
this.logger.info('Hello world from "IndexTest"');
|
|
|
|
}
|
|
|
|
}
|