9 lines
191 B
Python
9 lines
191 B
Python
from runtime_support import ensure_stdio, run_with_fatal_log
|
|
|
|
ensure_stdio("warehouse_main")
|
|
|
|
from main import run_app
|
|
|
|
|
|
raise SystemExit(run_with_fatal_log("Warehouse Backoffice", run_app))
|