BROKE/API_PROX: Start from scratch, add hello world with HonoJS

This commit is contained in:
Kentai Radiquum 2025-09-05 21:23:06 +05:00
parent 7cc36688e4
commit 033b7fdea5
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
22 changed files with 351 additions and 3739 deletions

9
api-prox/src/index.ts Normal file
View file

@ -0,0 +1,9 @@
import { Hono } from 'hono'
const app = new Hono()
app.get('/', (c) => {
return c.text('Hello Hono!')
})
export default app