Skip to content

Commit

Permalink
Merge pull request #14 from jsightapi/SERV-385_fix_json_formatter
Browse files Browse the repository at this point in the history
SERV-385, fix openapi json format output
  • Loading branch information
andrew-platonov authored Apr 15, 2024
2 parents a5ec3de + 522eac3 commit e010590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openapi.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func openapiJSON(jAPI kit.JApi) ([]byte, error) {
return nil, err
}

resp, err := json.Marshal(oa)
resp, err := json.MarshalIndent(oa, "", " ")
if err != nil {
return nil, err
}
Expand Down

0 comments on commit e010590

Please sign in to comment.