mv update command to machines update command

This commit is contained in:
Jörg Thalheim
2023-08-24 16:25:06 +02:00
parent 80d3349ce0
commit 56542ca5ef
4 changed files with 25 additions and 8 deletions

View File

@@ -0,0 +1,17 @@
# !/usr/bin/env python3
import argparse
from .update import register_update_parser
# takes a (sub)parser and configures it
def register_parser(parser: argparse.ArgumentParser) -> None:
subparser = parser.add_subparsers(
title="command",
description="the command to run",
help="the command to run",
required=True,
)
groups_parser = subparser.add_parser("update", help="Update a machine")
register_update_parser(groups_parser)