Convention for API: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 22: Line 22:


| valign="top" |
| valign="top" |
   │
   │  
   │
  ├─ gui/main/
   ├─ static/
   │ ├─ strict/
   │ ├─ *.js
   │  └─ static/
   │ ├─ **/*.css
   │     ├─ *.js
   │ └─ **/*.png
   │     ├─ **/*.css
  │
   │     └─ **/*.png
   │
   │


| valign="top" |
| valign="top" |
   │
   │  
  
   ├─ gui/peer/
   ├─ strict/
   │  ├─ strict/
   │  ├─ *.js
   │  └─ static/
   │ ├─ **/*.css
  │    ├─ *.js
   │ └─ **/*.png
   │     ├─ **/*.css
  │
   │     └─ **/*.png
   │
   │
|}
|}

Revision as of 10:15, 22 May 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
 │

References