diff --git a/routes/public/index.ts b/routes/public/index.ts index fca6687..0833d18 100644 --- a/routes/public/index.ts +++ b/routes/public/index.ts @@ -1 +1,2 @@ -export * from './notion' \ No newline at end of file +export * from './notion' +export * from './test' \ No newline at end of file diff --git a/routes/public/test.ts b/routes/public/test.ts new file mode 100644 index 0000000..c046b2f --- /dev/null +++ b/routes/public/test.ts @@ -0,0 +1,3 @@ +export const test = async () => { + return { success: 'Test received' } +} \ No newline at end of file