Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ralfhandl committed Dec 21, 2023
1 parent d7355fd commit 17fde13
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/csdl2openapi.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Converts OData CSDL JSON to OpenAPI 3.0.2
*
* Latest version: https://github.com/oasis-tcs/odata-openapi/blob/master/lib/csdl2openapi.js
* Latest version: https://github.com/oasis-tcs/odata-openapi/blob/main/lib/csdl2openapi.js
*/

const { EDM, nameParts } = require("./edm");
Expand Down
8 changes: 2 additions & 6 deletions lib/diagram.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
/**
* Resource diagram for an OData model using https://yuml.me
*
* Latest version: https://github.com/oasis-tcs/odata-openapi/blob/master/lib/edm.js
* Latest version: https://github.com/oasis-tcs/odata-openapi/blob/main/lib/edm.js
*/

const { isIdentifier, nameParts } = require("./edm");

{
isIdentifier;
}
const { nameParts } = require("./edm");

module.exports = { resourceDiagram };

Expand Down
2 changes: 1 addition & 1 deletion lib/edm.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Entity Data Model for OData
*
* Latest version: https://github.com/oasis-tcs/odata-openapi/blob/master/lib/edm.js
* Latest version: https://github.com/oasis-tcs/odata-openapi/blob/main/lib/edm.js
*/

module.exports = { nameParts };
Expand Down

0 comments on commit 17fde13

Please sign in to comment.