diff options
| author | HampusM <hampus@hampusmat.com> | 2021-08-02 17:26:29 +0200 | 
|---|---|---|
| committer | HampusM <hampus@hampusmat.com> | 2021-08-02 17:26:29 +0200 | 
| commit | 904bd1731447796cf1a2bd992c89f889f2a6263a (patch) | |
| tree | c746534149722905792e8a1b0059568ed9cc1c7c /packages/server/src/routes/api/v1/repo/branches.ts | |
| parent | 8feb65c5467cc3ad48270183113a121c4a9f86ca (diff) | |
Renamed the shared types package to api
Diffstat (limited to 'packages/server/src/routes/api/v1/repo/branches.ts')
| -rw-r--r-- | packages/server/src/routes/api/v1/repo/branches.ts | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/server/src/routes/api/v1/repo/branches.ts b/packages/server/src/routes/api/v1/repo/branches.ts index 10ac736..c36463d 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 { FastifyInstance, FastifyPluginOptions } from "fastify";  import { Branch } from "../../../../git/branch";  import { Route } from "../../../../types/fastify"; -import { BranchSummary as APIBranchSummary, Branch as APIBranch } from "shared_types"; +import { BranchSummary as APIBranchSummary, Branch as APIBranch } from "api";  export default function(fastify: FastifyInstance, opts: FastifyPluginOptions, done: (err?: Error) => void): void {  	fastify.route<Route>({  | 
