mirror of
https://github.com/not-kennethreitz/flango.git
synced 2026-06-05 23:20:18 +00:00
10 lines
203 B
Python
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" |