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/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'packages/server/src/routes/api/v1/index.ts') diff --git a/packages/server/src/routes/api/v1/index.ts b/packages/server/src/routes/api/v1/index.ts index 7997b4d..0a28409 100644 --- a/packages/server/src/routes/api/v1/index.ts +++ b/packages/server/src/routes/api/v1/index.ts @@ -1,12 +1,12 @@ import { FastifyPluginCallback } from "fastify"; -import { Repository } from "../../../git/repository"; -import { FastifyPluginOptions, Route } from "../../../types/fastify"; +import { Repository } from "git/repository"; +import { FastifyPluginOptions, Route } from "types/fastify"; import repo from "./repo"; import { verifyRepoName } from "../util"; import { Info as APIInfo } from "api"; -import { ServerError } from "../../../git/error"; +import { ServerError } from "git/error"; import { getRepositories, getRepository } from "./data"; -import { sources } from "../../../cache"; +import { sources } from "cache"; const reposEndpoints: FastifyPluginCallback = (fastify, opts, done) => { fastify.route({ -- cgit v1.2.3-18-g5258