aboutsummaryrefslogtreecommitdiff
path: root/packages/server/src/routes/api/v1/repo/branches.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/server/src/routes/api/v1/repo/branches.ts')
-rw-r--r--packages/server/src/routes/api/v1/repo/branches.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/server/src/routes/api/v1/repo/branches.ts b/packages/server/src/routes/api/v1/repo/branches.ts
index f709f4d..84ca003 100644
--- a/packages/server/src/routes/api/v1/repo/branches.ts
+++ b/packages/server/src/routes/api/v1/repo/branches.ts
@@ -1,7 +1,7 @@
import { FastifyPluginCallback } from "fastify";
-import { sources } from "../../../../cache";
-import { Branch } from "../../../../git/branch";
-import { FastifyPluginOptions, Route } from "../../../../types/fastify";
+import { sources } from "cache";
+import { Branch } from "git/branch";
+import { FastifyPluginOptions, Route } from "types/fastify";
import { getBranch, getBranches } from "../data";
const branches: FastifyPluginCallback<FastifyPluginOptions> = (fastify, opts, done) => {