1
0
Fork 0
mirror of https://github.com/engineer-man/piston.git synced 2025-05-01 01:16:29 +02:00

cli: add ppman install and list

This commit is contained in:
Thomas Hobson 2021-02-27 19:30:11 +13:00
parent e5225f05c9
commit ff69a28a68
No known key found for this signature in database
GPG key ID: 9F1FD9D87950DB6F
3 changed files with 73 additions and 0 deletions
cli/commands

7
cli/commands/ppman.js Normal file
View file

@ -0,0 +1,7 @@
exports.command = 'ppman'
exports.aliases = ['pkg']
exports.describe = 'Package Manager'
exports.builder = yargs => yargs
.commandDir('ppman_commands')
.demandCommand()