mirror of https://github.com/buster-so/buster.git
5 lines
111 B
TypeScript
5 lines
111 B
TypeScript
|
import { Hono } from 'hono';
|
||
|
import { POST } from './POST';
|
||
|
|
||
|
export const proxy = new Hono().route('/', POST);
|