cake-erp-challenge/app/__init__.py

8 lines
93 B
Python

from flask import Flask
app = Flask(__name__)
app.debug = True
from .routes import routes