Skip to content

Commit

Permalink
fix dependency cycle
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorCapCoder committed Nov 22, 2023
1 parent 9b1b4e9 commit 59c9e22
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { ApiProperty } from '@nestjs/swagger';
import { ToolContextType } from '../../../../common/enum';
import { ToolContextType } from '../../../../common/enum/tool-context-type.enum';

export class ToolContextTypesList {
@ApiProperty({ type: [ToolContextType] })
@ApiProperty({ enum: ToolContextType, enumName: 'ToolContextType', isArray: true })
data: ToolContextType[];

constructor(data: ToolContextType[]) {
Expand Down

0 comments on commit 59c9e22

Please sign in to comment.