mirror of
https://github.com/caelestia-dots/cli.git
synced 2026-06-11 01:39:28 -05:00
internal: refactor for packaging
Package using python-build, python-installer and hatch
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
from argparse import Namespace
|
||||
|
||||
|
||||
class Command:
|
||||
args: Namespace
|
||||
|
||||
def __init__(self, args: Namespace) -> None:
|
||||
self.args = args
|
||||
|
||||
def run(self) -> None:
|
||||
pass
|
||||
Reference in New Issue
Block a user