blob: a7812dc349a19456009b9a2b17c2df4cf75847b0 (
plain)
| 1
2
3
4
5
6
7
8
 | from rest.resource import Resource
class RootResource(Resource):
    """This is my docstring
    """
    def handle_get(self, headers={}, *args, **kwargs):
        return (200, {'Name': 'Test', 'Value': 1}, {'Location': 'BLAH'})
 |