8 lines
153 B
Python
8 lines
153 B
Python
from app import app, bootstrap
|
|
|
|
|
|
if __name__ == "__main__":
|
|
with app.app_context():
|
|
bootstrap()
|
|
print("数据库初始化完成: data/inventory.db")
|