2026-04-24 11:04:22 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
|
|
from argparse import ArgumentParser
|
|
|
|
|
|
|
|
|
|
from ..App import App
|
|
|
|
|
from .Cmd import Cmd as CmdBase
|
|
|
|
|
|
|
|
|
|
class CmdPkg(CmdBase): # export
|
|
|
|
|
|
|
|
|
|
def __init__(self, parent: App) -> None:
|
|
|
|
|
super().__init__(parent, 'pkg', help="System package manager wrapper")
|
2026-05-01 10:17:24 +02:00
|
|
|
self.load_subcommands()
|
2026-04-24 11:04:22 +02:00
|
|
|
|
|
|
|
|
def add_arguments(self, p: ArgumentParser) -> None:
|
|
|
|
|
super().add_arguments(p)
|