Skip to content

Commit

Permalink
fix: use correct Service import
Browse files Browse the repository at this point in the history
  • Loading branch information
skonves committed Apr 5, 2023
1 parent 1a0bb83 commit 48a7ffc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/commands/ir.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import { performance } from 'perf_hooks';

import { BasketryError, PerfEvent, Service } from '../types';
import { BasketryError, PerfEvent } from '../types';
import { Engine, getInput } from '../engine';
import * as perf from '../performance';

import { CommmonArgs } from './types';

import { error, readStreamToString } from '../private-utils';
import { Service } from '../ir';

export type CliOutput = {
errors: BasketryError[];
Expand Down

0 comments on commit 48a7ffc

Please sign in to comment.