Skip to content

Instantly share code, notes, and snippets.

@alexpermiakov
Created December 12, 2018 17:43
Show Gist options
  • Save alexpermiakov/6cbb78eb764fef59818ad09426b28ea3 to your computer and use it in GitHub Desktop.
Save alexpermiakov/6cbb78eb764fef59818ad09426b28ea3 to your computer and use it in GitHub Desktop.
Basic search routing
import { Request, Response } from "express";
export default [
{
path: "/",
method: "get",
handler: async (req: Request, res: Response) => {
res.send("Hello world!");
}
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment