From 1e5309e7f842491a24e4c7a61ce1f69b695dfe17 Mon Sep 17 00:00:00 2001 From: HampusM Date: Wed, 18 Aug 2021 18:39:50 +0200 Subject: Cleaned up backend routes's imports --- packages/server/src/routes/api/v1/repo/branches.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'packages/server/src/routes/api/v1/repo/branches.ts') 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 = (fastify, opts, done) => { -- cgit v1.2.3-18-g5258