WIP: shims

This commit is contained in:
Daylin Morgan 2023-05-26 22:27:05 -05:00
parent 80ae99c754
commit cca5bf4866
Signed by: daylin
GPG key ID: C1E52E7DD81DF79F

View file

@ -1113,6 +1113,9 @@ class Viv:
),
):
self._install_local_src(sha256, args.src, args.cli)
def shim(self, args):
"""generate viv-powered cli apps"""
echo("not implemented.")
def _get_subcmd_parser(
self,
@ -1274,6 +1277,11 @@ class Viv:
"-p", "--pythonpath", help="show the path/to/install", action="store_true"
)
self._get_subcmd_parser(
subparsers,
"shim",
).set_defaults(func =self.shim, cmd="shim")
args = parser.parse_args()
args.func(args)