Add initial implementation of cobot CLI and setup scripts
This commit is contained in:
@@ -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")
|
||||
Reference in New Issue
Block a user