File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 38
38
(println " USAGE" )
39
39
(println " aidbox-sdk generate <target-language> <input-source> [options]" )
40
40
(println )
41
+ (println " <target-language> is one of: " (str/join " ," supported-languages))
42
+ (println " <input-source> is either:\n 1) path to .tar.gz FHIRSchemas package file\n 2) url to download FHIRSchema .tar.gz file" )
43
+ (println )
44
+ (println " EXAMPLES" )
45
+ (println " $ aidbox-sdk generate dotnet http://localhost:8888/api/sdk/fhir-packages -a YmFzaWM6c2VjcmV0" )
46
+ (println " $ aidbox-sdk generate dotnet hl7.fhir.r4.core-4.0.1.tgz" )
47
+ (println )
41
48
(println " OPTIONS" )
42
49
(println summary))
43
50
63
70
(exit 0 )
64
71
65
72
(catch Throwable e
66
- (print-errors e)
73
+ (println " error " e)
67
74
(exit 1 )))
68
75
69
76
:else
Original file line number Diff line number Diff line change 108
108
(println " Generating common SDK files" )
109
109
(save-files! (generator/generate-sdk-files generator'))
110
110
111
- (println " Finished succesfully!" )))
111
+ (println " Finished succesfully!" )
112
+ (println " Output dir: " (.getAbsolutePath output-dir))))
112
113
113
114
(def system {:exit (fn [status] (System/exit status))
114
115
:generate generate!})
You can’t perform that action at this time.
0 commit comments