add api ok endpoint
This commit is contained in:
parent
a41ad5fb6e
commit
21910eca41
1 changed files with 2 additions and 1 deletions
|
|
@ -18,7 +18,8 @@ const app = new Elysia()
|
|||
.use(statsApp)
|
||||
.use(partyApp)
|
||||
.use(partyAnalysisApp)
|
||||
.use(partySocketApp),
|
||||
.use(partySocketApp)
|
||||
.get("/", () => ({ ok: true })),
|
||||
)
|
||||
.listen(4000);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue