aboutsummaryrefslogtreecommitdiff
path: root/packages/server/src/routes/api/v1/index.ts
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2021-08-02 17:26:29 +0200
committerHampusM <hampus@hampusmat.com>2021-08-02 17:26:29 +0200
commit904bd1731447796cf1a2bd992c89f889f2a6263a (patch)
treec746534149722905792e8a1b0059568ed9cc1c7c /packages/server/src/routes/api/v1/index.ts
parent8feb65c5467cc3ad48270183113a121c4a9f86ca (diff)
Renamed the shared types package to api
Diffstat (limited to 'packages/server/src/routes/api/v1/index.ts')
-rw-r--r--packages/server/src/routes/api/v1/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/server/src/routes/api/v1/index.ts b/packages/server/src/routes/api/v1/index.ts
index 62ae5d7..9cc20c2 100644
--- a/packages/server/src/routes/api/v1/index.ts
+++ b/packages/server/src/routes/api/v1/index.ts
@@ -3,7 +3,7 @@ import { Repository } from "../../../git/repository";
import { Route } from "../../../types/fastify";
import repo from "./repo";
import { verifyRepoName } from "../util";
-import { Info as APIInfo, RepositorySummary as APIRepositorySummary, Repository as APIRepository } from "shared_types";
+import { Info as APIInfo, RepositorySummary as APIRepositorySummary, Repository as APIRepository } from "api";
import { BaseError } from "../../../git/error";
function setHandlers(fastify: FastifyInstance): void {