moving to appropriate directory

This commit is contained in:
Varun Singh
2025-04-01 23:45:09 -07:00
parent 24b54c66ee
commit 2229730169
14 changed files with 13 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 ᓚᘏᗢ' });
}