12 lines
251 B
Python
12 lines
251 B
Python
import argparse
|
|
from pathlib import Path
|
|
from ..configuration import Config
|
|
|
|
|
|
def config_cmd(args: argparse.Namespace) -> None:
|
|
"""
|
|
Handler for the 'config' command.
|
|
"""
|
|
if args.create:
|
|
Config.create_default(Path(args.create))
|