feat: embed gf3 water extraction workflow

This commit is contained in:
2026-06-15 11:45:11 +08:00
parent a0388de9d4
commit f726367cbb
23 changed files with 2037 additions and 14 deletions
@@ -0,0 +1,14 @@
"""Backward-compatible processor facade.
New code should import from ``gf3_water.pipeline`` or ``gf3_water.cli``. This
module remains so existing scripts and integrations that import
``gf3_water.processor`` continue to work.
"""
from __future__ import annotations
from .cli import build_arg_parser, main
from .pipeline import run_from_args
__all__ = ["build_arg_parser", "main", "run_from_args"]