File size: 331 Bytes
c34c995 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
//
// 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; |