7 lines
164 B
TypeScript
7 lines
164 B
TypeScript
import { setup } from './helpers/setup'
|
|
import { startServer as start } from './index'
|
|
/**
|
|
* Setup extensions and start the server
|
|
*/
|
|
setup().then(() => start())
|