forked from Shinonome/caelestia-cli
52dfdb97ec
Also switch to classes
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
|