From bdba33d755f7df5767ad4948a0e335aaf12be264 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 16 Aug 2013 02:08:38 -0400 Subject: [PATCH] no more markdown service --- fablib.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/fablib.py b/fablib.py index 5ab27ce..e019e96 100644 --- a/fablib.py +++ b/fablib.py @@ -120,16 +120,6 @@ def render_document(profile, document): return markdown(_document['text']) -class MarkdownService(Resource): - def get(self, profile, document): - return {'user': _user, 'document': _document} - - def put(self, profile, document): - todos[profile] = request.form['data'] - return {'user': _user, 'document': _document} - -api.add_resource(MarkdownService, '/render') -