Arno Kaimbacher
296c8fd46e
Some checks failed
CI Pipeline / japa-tests (push) Failing after 1m13s
- renamed middleware Role and Can to role_middleware and can_middleware - added some typing for inertia vue3 components - npm updates
14 lines
363 B
TypeScript
14 lines
363 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"');
|
|
}
|
|
}
|