summaryrefslogtreecommitdiff
path: root/foundry/router.py
blob: 233fa30481c9ed685365cc268b3466b147343549 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# vim: set filencoding=utf8
"""
RESTful URL Router

@author: Mike Crute (mcrute@gmail.com)
@organization: SoftGroup Interactive, Inc.
@date: May 20, 2010
"""


class Renderer(object):
    pass


class JSONRenderer(Renderer):

    can_handle = ('application/json', 'text/json')



class Resource(object):
    pass