wikicrawl/launcher.py

10 lines
191 B
Python
Raw Normal View History

import app
2017-08-17 01:27:05 -06:00
import settings
# Inject the settings.DefaultSettings object into the
# app and start running the program.
app.init(settings.DefaultSettings)
app.main()
2017-08-17 01:27:05 -06:00
input('<enter> to exit')