Files
ui/cli/index.mjs
2024-03-13 17:03:28 +01:00

15 lines
230 B
JavaScript

import { defineCommand, runMain } from 'citty'
import init from './commands/init.mjs'
const main = defineCommand({
meta: {
name: 'nuxtui',
description: 'Nuxt UI CLI'
},
subCommands: {
init
}
})
runMain(main)