aboutsummaryrefslogtreecommitdiff
path: root/packages/server/src/routes/api/v1/repo/branches.ts
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2021-08-18 18:39:50 +0200
committerHampusM <hampus@hampusmat.com>2021-08-18 18:39:50 +0200
commit1e5309e7f842491a24e4c7a61ce1f69b695dfe17 (patch)
tree5ab77afd060f4bec601c183fb6509bb8882f573b /packages/server/src/routes/api/v1/repo/branches.ts
parentd1a1b7dc947063aef5f8375a6a1e03246b272c84 (diff)
Cleaned up backend routes's imports
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) => {