hydro_cli 0.13.0

Hydro Deploy Command Line Interface
Documentation
1
2
3
4
5
6
7
8
9
import hydro._core # type: ignore
import sys

def cli():
    try:
        hydro._core.cli.cli_entrypoint(sys.argv)
        return 0
    except Exception:
        return 1