13 lines
347 B
Python
13 lines
347 B
Python
"""System Status"""
|
|
import argparse
|
|
from trovedb.cli import CliEnv
|
|
|
|
def setup(parser: argparse.ArgumentParser) -> None:
|
|
"""Configure this subcommand's arguments."""
|
|
pass
|
|
|
|
def run(env: CliEnv, args: argparse.Namespace) -> None:
|
|
"""Entry point when this subcommand is invoked."""
|
|
|
|
if env.local_trove:
|
|
print("Trove Detected")
|