Skip to content

Commit

Permalink
fix: add missing import that prevents compiling generated code (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
dalelane authored Mar 9, 2024
1 parent f4f2418 commit abe8131
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions components/Files/Models.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export function Models(asyncapi, params) {
<PackageDeclaration path={`${params.package}.models`} />
<ImportDeclaration path={`${params.package}.models.ModelContract`} />
<ImportDeclaration path={'java.util.UUID'} />
<ImportDeclaration path={'com.fasterxml.jackson.annotation.JsonProperty'} />

<Class name={messageNameUpperCase} extendsClass="ModelContract">
<Indent size={2} type={IndentationTypes.SPACES}>
Expand Down

0 comments on commit abe8131

Please sign in to comment.