8 lines
141 B
Python
8 lines
141 B
Python
from oshipka.persistance import init_db
|
|
from oshipka.webapp import app
|
|
|
|
if __name__ == "__main__":
|
|
init_db(app)
|
|
|
|
app.run(debug=True)
|