UNPKG

158 BJavaScriptView Raw
1import Server from './server';
2import runtime from './runtime';
3
4export { runtime };
5
6export function createServer(options) {
7 return new Server(options);
8}