9 lines
210 B
Python
9 lines
210 B
Python
# Imports from the __init__.py file inside the surveyApp package
|
|
from surveyapp import create_app
|
|
|
|
# Creates instantiation of the app
|
|
app = create_app("dev")
|
|
|
|
if __name__ == '__main__':
|
|
app.run(debug=True)
|