🦠 Added ignored folder back to git tracking

Signed-off-by: Rishi Ghan <rishi.ghan@gmail.com>
This commit is contained in:
2021-04-15 15:15:23 -07:00
parent 2ccebf13b8
commit 22a5cba98d
11 changed files with 200 additions and 0 deletions

12
src/server/route/path.ts Normal file
View File

@@ -0,0 +1,12 @@
import { Ipath, IPathRoute } from "../interfaces/path.interface";
function path(url: string): IPathRoute {
const allRoutes: Ipath = {
"/extra": {
methods: ["POST", "GET", "PUT"],
},
};
return allRoutes[url];
}
export default path;