11 lines
354 B
Python
11 lines
354 B
Python
"""Deterministic synthetic shipyard APS dataset generator.
|
|
|
|
All generated records are SYNTHETIC and must never be represented as internal
|
|
Beihai Shipyard production data.
|
|
"""
|
|
|
|
from .config import GeneratorConfig
|
|
from .models import DatasetBundle, business_digest, stable_id
|
|
|
|
__all__ = ["DatasetBundle", "GeneratorConfig", "business_digest", "stable_id"]
|