Convention for API: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 31: Line 31:
   │
   │
|}
|}
==References==
* [[Convention for JavaScript Packages and Classes]]
* [[Convention for Cascading Style Sheets]]
* [[Convention for Java Web Start Project]]
* [[Convention for Database Tables]]
* [[Convention for Port]]

Revision as of 22:41, 14 May 2020

/context/path/
 ├─ api/
 │  ├─ auth/     [OAuth2  ]
 │  ├─ docs/     [MANUAL  ]
 │  ├─ ghql/     [GraphQL ]
 │  ├─ rest/     [REST API]
 │  └─ soap/     [SOAP API]
 │
 │
 │
 ├─ static/
 │  ├─ *.js
 │  ├─ **/*.css
 │  └─ **/*.png
 │
 │
 │
 │
 ├─ strict/
 │  ├─ *.js
 │  ├─ **/*.css
 │  └─ **/*.png
 │
 │

References