Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
feloy committed Jan 17, 2024
1 parent 0aad529 commit 68e6237
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/backend/src/studio-api-impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import { ModelInfo } from '@shared/models/IModelInfo';
import { TaskRegistry } from './registries/TaskRegistry';
import { Task } from '@shared/models/ITask';
import * as path from 'node:path';
import { ModelResponse } from '@shared/models/IModelResponse';
import { PlayGroundManager } from './playground';
import * as podmanDesktopApi from '@podman-desktop/api';
import { QueryState } from '@shared/models/IPlaygroundQueryState';

export const RECENT_CATEGORY_ID = 'recent-category';

Expand Down
2 changes: 1 addition & 1 deletion packages/shared/StudioAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import type { Recipe } from '@shared/models/IRecipe';
import type { Category } from '@shared/models/ICategory';
import { RecipeStatus } from '@shared/models/IRecipeStatus';
import { ModelInfo } from '@shared/models/IModelInfo';
import { ModelResponse } from '@shared/models/IModelResponse';
import { Task } from './models/ITask';
import { QueryState } from './models/IPlaygroundQueryState';

export abstract class StudioAPI {
abstract ping(): Promise<string>;
Expand Down

0 comments on commit 68e6237

Please sign in to comment.