10 lines
192 B
Python
10 lines
192 B
Python
import argparse
|
|
from ..configuration import Config
|
|
|
|
|
|
def translation_cmd(args: argparse.Namespace, config: Config) -> None:
|
|
"""
|
|
Handler for the 'translation' command.
|
|
"""
|
|
pass
|