Add robot setup command and configuration management for cobot-setting.yaml

This commit is contained in:
Даниил Грабарь
2026-05-20 14:43:20 +10:00
parent dedf3e3467
commit 86e6e801e9
7 changed files with 435 additions and 6 deletions
+2
View File
@@ -2,6 +2,7 @@ import argparse
from cobot.commands.doc_setup import run as _doc_setup
from cobot.commands.docker_setup import run as _docker_setup
from cobot.commands.robot_setup import run as _robot_setup
def register(subparsers):
@@ -12,3 +13,4 @@ def register(subparsers):
def run(args: argparse.Namespace) -> None:
_doc_setup(args)
_docker_setup(args)
_robot_setup(args)