Skip to content

Commit

Permalink
fix dagger Client initilization issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Mar 1, 2024
1 parent 0d88599 commit 8eb7301
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
2 changes: 0 additions & 2 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
export { assertEquals } from "https://deno.land/std@0.191.0/testing/asserts.ts";
import { Client } from "./sdk/client.gen.ts";
export default Client;

export type { DirectoryID, SecretID } from "./sdk/client.gen.ts";
export { Directory, Secret } from "./sdk/client.gen.ts";
Expand Down
8 changes: 2 additions & 6 deletions src/dagger/lib.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
import Client, {
Directory,
DirectoryID,
Secret,
SecretID,
} from "../../deps.ts";
import { Directory, DirectoryID, Secret, SecretID } from "../../deps.ts";
import { Client } from "../../sdk/client.gen.ts";

export const getDirectory = async (
client: Client,
Expand Down

0 comments on commit 8eb7301

Please sign in to comment.