# 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