Files
2017-03-16 12:56:23 -04:00

10 lines
203 B
Python

from flask import Flask, request, render_template, g
# from core.models import Website, Page, Product
app = Flask(__name__)
app.debug = True
@app.route('/')
def hello_world():
return "hello world"