Convention for API: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 41: Line 41:
   │
   │
|}
|}
==Options Instead of Main==
/context/path/api/main/ =>
  ├─ /context/path/api/ours/
  └─ /context/path/api/self/


==References==
==References==

Revision as of 20:52, 26 July 2020

/context/path/
 ├─ api/main/
 │  ├─ auth/     [OAuth2  ]
 │  ├─ docs/     [MANUAL  ]
 │  ├─ ghql/     [GraphQL ]
 │  ├─ rest/     [REST API]
 │  └─ soap/     [SOAP API]
 │
 │ 
 ├─ api/peer/
 │  ├─ ghql/
 │  └─ rest/
 │     ├─ facbook/
 │     ├─ google/map/
 │     └─ yahoo/weather/
 │
 │ 
 ├─ gui/main/
 │  ├─ strict/
 │  └─ static/
 │     ├─ *.js
 │     ├─ **/*.css
 │     └─ **/*.png
 │
 │ 
 ├─ gui/peer/
 │  ├─ strict/
 │  └─ static/
 │     ├─ *.js
 │     ├─ **/*.css
 │     └─ **/*.png
 │

Options Instead of Main

/context/path/api/main/ =>
 ├─ /context/path/api/ours/
 └─ /context/path/api/self/

References