Skip to content

Commit

Permalink
feat: add description field to requests (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
nohehf authored Sep 23, 2022
1 parent 74903a6 commit 20e354d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/format.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export interface PostmanItem {
host: string[];
path: string[];
};
description: string | null;
};
response: null[];
}
Expand Down Expand Up @@ -71,6 +72,7 @@ function queryToItem(
host,
path,
},
description: query.outrospectQuery.description ?? null,
},
response: [],
};
Expand Down

0 comments on commit 20e354d

Please sign in to comment.