From 0b0ae11831d09cf81fcf7d4223e4d34a48a3de8e Mon Sep 17 00:00:00 2001 From: Christopher Aitken Date: Tue, 19 Mar 2024 19:58:51 -0500 Subject: [PATCH] Test commit to verify CI/CD config --- routes/public/index.ts | 3 ++- routes/public/test.ts | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 routes/public/test.ts 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