Files
caelestia-cli/src/caelestia/subcommands/variant.py
T
2 * r + 2 * t f663e6f690 internal: refactor for packaging
Package using python-build, python-installer and hatch
2025-06-11 00:41:05 +10:00

12 lines
184 B
Python

from argparse import Namespace
class Command:
args: Namespace
def __init__(self, args: Namespace) -> None:
self.args = args
def run(self) -> None:
pass