Skip to content

Commit

Permalink
improve clojuredoc strings
Browse files Browse the repository at this point in the history
  • Loading branch information
allentiak authored and alexanderkiel committed Nov 21, 2024
1 parent 7adc3ab commit b15e219
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
6 changes: 5 additions & 1 deletion modules/rest-util/src/blaze/middleware/fhir/output.clj
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
(ns blaze.middleware.fhir.output
"JSON/XML serialization middleware."
"FHIR Resource serialization middleware.
Currently supported formats:
* standard: JSON, XML;
* special: binary."
(:require
[blaze.anomaly :as ba]
[blaze.fhir.spec :as fhir-spec]
Expand Down
5 changes: 4 additions & 1 deletion modules/rest-util/src/blaze/middleware/fhir/resource.clj
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
(ns blaze.middleware.fhir.resource
"JSON/XML deserialization middleware."
"FHIR Resource deserialization middleware.
Currently supported formats:
* standard: JSON, XML."
(:require
[blaze.anomaly :as ba :refer [if-ok when-ok]]
[blaze.async.comp :as ac]
Expand Down
5 changes: 4 additions & 1 deletion modules/rest-util/src/blaze/middleware/output.clj
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
(ns blaze.middleware.output
"JSON serialization middleware."
"Non-FHIR serialization middleware.
Currently supported formats:
* standard: JSON."
(:require
[jsonista.core :as j]
[ring.util.response :as ring]))
Expand Down

0 comments on commit b15e219

Please sign in to comment.