coman-cli 1.2.0

Coman is a simple API manager designed to streamline API management and request sending. Can be used as a library or CLI.
Documentation
[
  {
    "name": "coman",
    "url": "http://localhost:8080",
    "headers": [],
    "requests": [
      {
        "name": "getUsers",
        "endpoint": "/users",
        "method": "Get",
        "headers": [
          [
            "Authorization",
            "Bearer token"
          ]
        ],
        "body": null
      },
      {
        "name": "createUser",
        "endpoint": "/users",
        "method": "Post",
        "headers": [
          [
            "Content-Type",
            "application/json"
          ]
        ],
        "body": "{\"name\": \"John Doe\",\"email\": \"john.doe@example.com\"}"
      }
    ]
  }
]