Skip to content

Commit

Permalink
fix(dotnet): resource map generation
Browse files Browse the repository at this point in the history
  • Loading branch information
krvital committed Oct 15, 2024
1 parent 0d899d6 commit 1e32929
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/aidbox_sdk/generator/dotnet.clj
Original file line number Diff line number Diff line change
Expand Up @@ -260,9 +260,9 @@
(map (fn [schema]
(let [class-name' (class-name (:resource-name schema))
module-name (if (:base? schema)
"Base"
"Aidbox.FHIR.Base"
(package->module-name (:package schema)))]
(format "{ typeof(Aidbox.FHIR.%s.%s), \"%s\"}"
(format "{ typeof(%s.%s), \"%s\"}"
module-name
class-name'
class-name'))))))
Expand Down

0 comments on commit 1e32929

Please sign in to comment.