import {DevServerCommand} from './dev-server/DevServer'; import {command, help} from 'oo-cli'; export class Dev { @command @help('Start the local development server for OCP apps (for more configuration options use ocp dev-server start)') public async dev() { const dev = new DevServerCommand(); await dev.start(); } }