tethys.backend/commands/index_test.ts
Arno Kaimbacher 296c8fd46e
Some checks failed
CI Pipeline / japa-tests (push) Failing after 1m13s
- added own provider for drive methods
- renamed middleware Role and Can to role_middleware and can_middleware
- added some typing for inertia vue3 components
- npm updates
2024-04-23 19:36:45 +02:00

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