11 lines
244 B
Python
11 lines
244 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)
|