From 62f372f0fb0a4fa634d4b02e2c970204b390f7ce Mon Sep 17 00:00:00 2001 From: Tommi Reiman Date: Fri, 10 Jan 2020 16:25:35 +0200 Subject: [PATCH] Add tags to malli-example --- examples/ring-malli-swagger/src/example/server.clj | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/ring-malli-swagger/src/example/server.clj b/examples/ring-malli-swagger/src/example/server.clj index 27260bd1..55c66bc6 100644 --- a/examples/ring-malli-swagger/src/example/server.clj +++ b/examples/ring-malli-swagger/src/example/server.clj @@ -24,7 +24,9 @@ [["/swagger.json" {:get {:no-doc true :swagger {:info {:title "my-api" - :description "with reitit-ring"}} + :description "with [malli](https://github.com/metosin/malli) and reitit-ring"} + :tags [{:name "files", :description "file api"} + {:name "math", :description "math api"}]} :handler (swagger/create-swagger-handler)}}] ["/files"