mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-06 14:37:38 +03:00
20 lines
480 B
JavaScript
20 lines
480 B
JavaScript
import express from 'express';
|
|
import {
|
|
about,
|
|
unimplemented,
|
|
answers,
|
|
topic,
|
|
image
|
|
} from '../controllers/apiController.js';
|
|
|
|
const apiRouter = express.Router();
|
|
|
|
apiRouter.get('/', about);
|
|
apiRouter.get('/search', unimplemented);
|
|
apiRouter.get('/image/:domain/:path', image);
|
|
apiRouter.get('/profile/:name', unimplemented);
|
|
apiRouter.get('/topic/:slug', topic);
|
|
apiRouter.get('/unanswered/:slug', answers);
|
|
apiRouter.get('/:slug', answers);
|
|
|
|
export default apiRouter;
|