15 lines
271 B
Python
15 lines
271 B
Python
from pathlib import Path
|
|
import os
|
|
|
|
|
|
os.chdir(Path(__file__).resolve().parent)
|
|
|
|
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))
|