summary refs log tree commit diff
path: root/src/index.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2020-11-28 19:31:04 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2020-11-28 19:31:04 +0100
commitbb9a76a2a1852350318998f77966c96b54887295 (patch)
treeda8938b2d423a47bc3fc15955599463cdaf9cde7 /src/index.ts
parentInitial commit (diff)
downloadserver-bb9a76a2a1852350318998f77966c96b54887295.tar.xz
:tada: standard client finished
Diffstat (limited to '')
-rw-r--r--src/index.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts
new file mode 100644

index 00000000..8765d6dc --- /dev/null +++ b/src/index.ts
@@ -0,0 +1,4 @@ +import { Server } from "./Server"; + +const server = new Server(); +server.start().catch(console.error);