tethys.backend/commands/index_test.ts

13 lines
342 B
TypeScript
Raw Normal View History

2024-03-14 19:25:27 +00:00
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"')
}
}