Remove unneeded start command file in cli

This commit is contained in:
rijkvanzanten
2020-10-15 12:46:25 -04:00
parent 0b894138b7
commit dff98f316b
2 changed files with 1 additions and 5 deletions

View File

@@ -1,4 +0,0 @@
export default async function start() {
const startServer = require('../../start').default;
await startServer();
}

View File

@@ -4,7 +4,7 @@ import program from 'commander';
const pkg = require('../../package.json');
import start from './commands/start';
import start from '../start';
import init from './commands/init';
import dbInstall from './commands/database/install';
import dbMigrate from './commands/database/migrate';