basic app

This commit is contained in:
Kenneth Reitz
2011-10-21 12:55:12 -04:00
parent c947ffdc2a
commit 301ddb4d93
2 changed files with 18 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
from .core import app
+17
View File
@@ -0,0 +1,17 @@
# -*- coding: utf-8 -*-
"""
feedharvest.core
~~~~~~~~~~~~~~~~
This module provides the FeedHarvest entrypoint.
"""
from flask import Flask, request
app = Flask(__name__)
if __name__ == '__main__':
app.run()