# owsresponse
Standardize communication between the different layers of an application.

# Summary
TODO: Add a summary and documentation.


# Examples

## Logic Usage
```python

from owsresponse.response import Response
from owsresponse.response import create_error_response
from owsresponse.status import BAD_REQUEST


def _say_hello(name):
    if not name:
        return create_error_response(
        500, 'Name must be specified', BAD_REQUEST)
    return Response(name=name)
```