9 lines
277 B
TypeScript
9 lines
277 B
TypeScript
import { Elysia } from "elysia";
|
|
import { Index } from "./frontend";
|
|
|
|
export const app = new Elysia()
|
|
.get("/", () => Index("/"))
|
|
.get("/blog", () => Index("/blog"))
|
|
.get("/projects", () => Index("/projects"))
|
|
.get("/content/post", () => "I'm from the server")
|