mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-31 20:24:27 -04:00
5 lines
114 B
TypeScript
5 lines
114 B
TypeScript
import { Elysia } from "elysia";
|
|
|
|
export const EntriesController = new Elysia()
|
|
.get('/entries', () => "hello");
|