Delete 'src/routes.generated.ts'

This commit is contained in:
Lio 2022-09-17 01:37:03 +02:00
parent 7011d509c6
commit 048bb27097

View file

@ -1,28 +0,0 @@
// This File is Autogenerated by scripts/routes.ts
// Do not edit this File manually
// run `vr routes` to regenerate this File
import PageRoute from "../utils/types/PageRoute.ts"
import { method as method_0, handler as handler_0 } from "./routes/api/clients/index.ts";
import { method as method_1, handler as handler_1 } from "./routes/api/clients/[client].ts";
import { method as method_2, handler as handler_2 } from "./routes/api/credits.ts";
import { method as method_3, handler as handler_3 } from "./routes/api/hewwo.ts";
import { method as method_4, handler as handler_4 } from "./routes/api/index.ts";
import { method as method_5, handler as handler_5 } from "./routes/index.ts";
import { method as method_6, handler as handler_6 } from "./routes/s/index.ts";
import { method as method_7, handler as handler_7 } from "./routes/s/[slug].ts";
const routes: PageRoute[] = [
{ method: method_0, handler: handler_0, route: "/api/clients" },
{ method: method_1, handler: handler_1, route: "/api/clients/{client}" },
{ method: method_2, handler: handler_2, route: "/api/credits" },
{ method: method_3, handler: handler_3, route: "/api/hewwo" },
{ method: method_4, handler: handler_4, route: "/api" },
{ method: method_5, handler: handler_5, route: "/" },
{ method: method_6, handler: handler_6, route: "/s" },
{ method: method_7, handler: handler_7, route: "/s/{slug}" }
]
export default routes