15 lines
269 B
Python
15 lines
269 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_barcode")
|
|
|
|
from barcode_client import main
|
|
|
|
|
|
raise SystemExit(run_with_fatal_log("Barcode WMS", main))
|