22 lines
514 B
Python
22 lines
514 B
Python
import argparse
|
|
|
|
from config.dtype import ArchMgrConfig
|
|
from templates import ArchMgrTemplates
|
|
|
|
|
|
# TODO: Templates data
|
|
def show(
|
|
config: ArchMgrConfig,
|
|
spec: ArchMgrTemplates,
|
|
args: argparse.Namespace,
|
|
):
|
|
"""Show details / information about things like contents pkg bundles
|
|
|
|
Args:
|
|
config: The configuration
|
|
spec: The archmgr templates that were loaded
|
|
kind: The type of information to get
|
|
arg: The arg for the command (e.g. bundle name)
|
|
"""
|
|
print(args)
|