Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
schobele committed Dec 13, 2024
1 parent 7090f64 commit b72744b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/aggregator/github-aggregator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import {
getLastSuccessfulCheckResult,
mapCheckResultToContextValue,
mapCheckToContextValue,
} from "../../src/checkly/utils";
import { prisma } from "../../src/prisma";
} from "../checkly/utils";
import { prisma } from "../prisma";
import { generateObject } from "ai";
import { getOpenaiSDKClient } from "../../src/ai/openai";
import { checkly } from "../../src/checkly/client";
import { getOpenaiSDKClient } from "../ai/openai";
import { checkly } from "../checkly/client";
import { stringify } from "yaml";
import { z } from "zod";
import { Release } from "@prisma/client";
Expand Down

0 comments on commit b72744b

Please sign in to comment.