14 lines
358 B
Python
14 lines
358 B
Python
import argparse
|
|
from config.dtype import ArchMgrConfig
|
|
|
|
|
|
def config(args: argparse.Namespace, config: ArchMgrConfig):
|
|
if args.conf == "show":
|
|
print("""
|
|
Your config can be found at
|
|
""")
|
|
print(config)
|
|
elif args.conf_update == "pkgs":
|
|
print("Updating config's package list")
|
|
# TODO: Config saver
|