mirror of
https://github.com/caelestia-dots/cli.git
synced 2026-06-06 23:39:29 -05:00
f663e6f690
Package using python-build, python-installer and hatch
12 lines
184 B
Python
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
|