aboutsummaryrefslogtreecommitdiff
path: root/packages/server/src/routes/repo.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/server/src/routes/repo.ts')
-rw-r--r--packages/server/src/routes/repo.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/server/src/routes/repo.ts b/packages/server/src/routes/repo.ts
index 1088e6b..fadcaf0 100644
--- a/packages/server/src/routes/repo.ts
+++ b/packages/server/src/routes/repo.ts
@@ -1,9 +1,9 @@
-import { Repository } from "../git/repository";
-import { CoolFastifyRequest, Route, FastifyPluginOptions } from "../types/fastify";
-import { Tag } from "../git/tag";
+import { Repository } from "git/repository";
+import { CoolFastifyRequest, Route, FastifyPluginOptions } from "types/fastify";
+import { Tag } from "git/tag";
import { FastifyPluginCallback } from "fastify";
-import { verifyRepoName } from "../routes/api/util";
-import { ServerError } from "../git/error";
+import { verifyRepoName } from "./api/util";
+import { ServerError } from "git/error";
const repo: FastifyPluginCallback<FastifyPluginOptions> = (fastify, opts, done): void => {
fastify.addHook("onRequest", async(req: CoolFastifyRequest, reply) => {