7 lines
206 B
TypeScript
7 lines
206 B
TypeScript
import { consola } from 'consola';
|
|
import { defineCommand } from '../utils/defineCommand';
|
|
|
|
export const init = defineCommand(async (directory: any) => {
|
|
consola.warn('exvite init: Not implemented');
|
|
});
|