forked from Shinonome/caelestia-cli
feat: add shell commands
Also switch to classes
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
from argparse import Namespace
|
||||
|
||||
|
||||
def run(args: Namespace) -> None:
|
||||
pass
|
||||
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