mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
15 lines
230 B
JavaScript
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)
|