Add initial implementation of cobot CLI and setup scripts

This commit is contained in:
Даниил Грабарь
2026-05-19 17:04:27 +03:00
parent 6228501581
commit d1c250e6b9
6 changed files with 295 additions and 0 deletions
View File
+10
View File
@@ -0,0 +1,10 @@
import argparse
def register(subparsers):
p = subparsers.add_parser("setup", help="First-time project setup")
p.set_defaults(func=run)
def run(args: argparse.Namespace) -> None:
print("cobot setup — TODO: implement setup logic here")