From 83b0d0604976f133660886eb96ae88c7ef3bf053 Mon Sep 17 00:00:00 2001 From: Alf Lervag Date: Thu, 6 Oct 2011 15:35:14 +0200 Subject: [PATCH] Create git repos for the ct-api. --- .gitignore | 2 ++ __init__.py | 7 +++++++ 2 files changed, 9 insertions(+) create mode 100644 .gitignore create mode 100644 __init__.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..06287c3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.DS_Store +/*.pyc diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..1b1b7a6 --- /dev/null +++ b/__init__.py @@ -0,0 +1,7 @@ +from flask import Blueprint + +api = Blueprint('api', __name__) + +@api.route('/') +def index(): + return "I works!"