mirror of
https://github.com/documenso/documenso
synced 2026-05-24 01:18:23 +00:00
10 lines
334 B
TypeScript
10 lines
334 B
TypeScript
|
|
import { Hono } from 'hono';
|
||
|
|
|
||
|
|
import type { HonoEnv } from '../../router';
|
||
|
|
import { detectFieldsRoute } from './detect-fields';
|
||
|
|
import { detectRecipientsRoute } from './detect-recipients';
|
||
|
|
|
||
|
|
export const aiRoute = new Hono<HonoEnv>()
|
||
|
|
.route('/detect-recipients', detectRecipientsRoute)
|
||
|
|
.route('/detect-fields', detectFieldsRoute);
|