initial commit

This commit is contained in:
Varun Singh
2025-03-20 12:31:08 -07:00
parent f4626287cd
commit c9f7882728
13 changed files with 9872 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import { logger } from '../../lib/utils';
export default function handler(req, res) {
logger.info('Received request to /api');
res.status(200).json({ message: 'Hello, World! from ฅ^•ﻌ•^ฅ ☁' });
}