forked from Shinonome/caelestia-cli
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
|