forked from OpenWF/SpaceNinjaServer
8 lines
199 B
TypeScript
8 lines
199 B
TypeScript
![]() |
import { RequestHandler } from "express";
|
||
|
|
||
|
const marketSearchRecommendationsController: RequestHandler = (_req, res) => {
|
||
|
res.sendStatus(200);
|
||
|
};
|
||
|
|
||
|
export { marketSearchRecommendationsController };
|