Skip to content

Commit 250cf2d

Browse files
committed
chore: use type from types module
1 parent 6087ccb commit 250cf2d

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

typegate/src/runtimes/python_wasi/python_wasi.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,11 @@ import { ComputeStage } from "../../engine/query_engine.ts";
99
import { PythonWasmMessenger } from "./python_wasm_messenger.ts";
1010
import { path } from "compress/deps.ts";
1111
import { PythonVirtualMachine } from "./python_vm.ts";
12-
import { Materializer } from "../../typegraph/types.ts";
12+
import { Artifact, Materializer } from "../../typegraph/types.ts";
1313
import * as ast from "graphql/ast";
1414

1515
const logger = getLogger(import.meta);
1616

17-
interface Artifact {
18-
path: string;
19-
hash: string;
20-
size: number;
21-
}
22-
2317
function generateVmIdentifier(mat: Materializer, uuid: string) {
2418
const { mod } = mat.data ?? {};
2519
let identifier = "";

0 commit comments

Comments
 (0)