Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/globato/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@
# from .run import run_cmd
from .build import build_cmd
from .sources import sources_group
from .pointz import dump
from .perspecto import perspecto_hillshade
from fetchez.cli.recipes import run_recipe
# from fetchez.cli.pipeline import pipeline_group

from fetchez.cli import setup_logging
from fetchez.utils import FetchezMainGroup
Expand All @@ -38,6 +41,9 @@
"run",
"build",
"sources",
"dump",
"hillshade",
# "pipeline",
],
# "Tools": [
# # "cudem",
Expand Down Expand Up @@ -79,6 +85,9 @@ def cli(verbose, quiet):
# cli.add_command(perspecto_group, name="perspecto")
cli.add_command(sources_group, name="sources")
cli.add_command(run_recipe, name="run")
cli.add_command(dump, name="dump")
cli.add_command(perspecto_hillshade, name="hillshade")
# cli.add_command(pipeline_group, name="pipeline")


if __name__ == "__main__":
Expand Down
Loading