arc-isle 0.1.2

The Interface Specification Language for the Arc project: design and implementation
Documentation
# -
- path: auth/signin
  method: post
  body:
    login: str
    password: str
  response:
    headers:
      refresh-token: str?
      authorization: str?
# -
- path: auth/signup
  method: post
  body:
    login: str
    password: str
  headers:
    authorization: str?
# -
- path: auth/logout
  method: delete
# -
- path: auth/refresh
  method: post
  headers:
    refresh-token: str
    authorization: str
  response:
    headers:
      refresh-token: str?
      authorization: str?