jw-pkg/src/python/jw/pkg/cmds/CmdProjects.py

19 lines
505 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
import sys, inspect, re
from argparse import ArgumentParser
from .Cmd import Cmd as CmdBase
class CmdProjects(CmdBase): # export
def __init__(self) -> None:
super().__init__('projects', help='Project metadata evaluation for building packages')
self._add_subcommands()
def add_arguments(self, p: ArgumentParser) -> None:
super().add_arguments(p)
def _run(self, args):
breakpoint()
raise Exception("Running with args", args)