image / src /routes /imageRoutes.js
hadadrjt's picture
image: Migrate to Node.js.
c34c995
raw
history blame
331 Bytes
//
// SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
// SPDX-License-Identifier: Apache-2.0
//
import { Router } from 'express';
import {
renderHome,
handleAction
} from '../controllers/imageController.js';
const router = Router();
router.get('/', renderHome);
router.post('/', handleAction);
export default router;