mirror of
https://github.com/kennethreitz-archive/feedharvest.git
synced 2026-06-05 07:26:13 +00:00
basic app
This commit is contained in:
@@ -0,0 +1 @@
|
||||
from .core import app
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user