UNPKG

@shahanahmed86/create-server

Version:
14 lines (8 loc) 378 B
import express from 'express'; import { catchAsync } from '../../../../utils'; import { commonController } from '../../../../controllers'; const router = express.Router(); router.post('/', catchAsync(commonController.uploadImage)); router.get('/', catchAsync(commonController.getImage)); router.delete('/', catchAsync(commonController.removeImage)); export default router;