Files
talk/src/core/index.ts
T
KiwiandGitHub 6da97c57d7 [CORL-314] Rename to Coral (#2318)
* chore: rename talk to coral

* fix: lint and unit tests

* fix: snapshot
2019-05-22 21:32:24 +02:00

12 lines
315 B
TypeScript

import Server, { ServerOptions } from "./server";
/**
* Create a Coral Server.
*
* @param options ServerOptions that will be used to configure Coral.
*/
export default function createCoral(options: ServerOptions = {}): Server {
// Create the server with the provided options.
return new Server(options);
}