File size: 449 Bytes
0185029
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""Console entry point for the portable data builder."""

from __future__ import annotations

from collections.abc import Sequence


def main(argv: Sequence[str] | None = None) -> int:
    """Load the data builder lazily so CLI help stays lightweight."""

    from orarl.data.build import main as build_main

    result = build_main(argv)
    return int(result) if result is not None else 0


if __name__ == "__main__":
    raise SystemExit(main())