diff options
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"; |