from dataclasses import dataclass
from argklass.command import Command
[docs]
class ProjectNew(Command):
"""WIP Create a new project"""
name: str = "new"
[docs]
@dataclass
class Arguments:
pass
[docs]
@staticmethod
def execute(args):
print("here")
# COMMANDS = ProjectNew