diff options
author | HampusM <hampus@hampusmat.com> | 2021-08-18 18:39:50 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-08-18 18:39:50 +0200 |
commit | 1e5309e7f842491a24e4c7a61ce1f69b695dfe17 (patch) | |
tree | 5ab77afd060f4bec601c183fb6509bb8882f573b /packages/server/src/routes/api/v1/repo/log.ts | |
parent | d1a1b7dc947063aef5f8375a6a1e03246b272c84 (diff) |
Cleaned up backend routes's imports
Diffstat (limited to 'packages/server/src/routes/api/v1/repo/log.ts')
-rw-r--r-- | packages/server/src/routes/api/v1/repo/log.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/server/src/routes/api/v1/repo/log.ts b/packages/server/src/routes/api/v1/repo/log.ts index 7ad1e11..019f579 100644 --- a/packages/server/src/routes/api/v1/repo/log.ts +++ b/packages/server/src/routes/api/v1/repo/log.ts @@ -1,7 +1,7 @@ import { FastifyPluginCallback } from "fastify"; -import { sources } from "../../../../cache"; -import { Commit } from "../../../../git/commit"; -import { Route, FastifyPluginOptions } from "../../../../types/fastify"; +import { sources } from "cache"; +import { Commit } from "git/commit"; +import { Route, FastifyPluginOptions } from "types/fastify"; import { verifySHA } from "../../util"; import { getCommit, getLogCommits } from "../data"; |