implemented to change folder access level chacl command.

This commit is contained in:
2023-05-11 17:00:14 +09:00
parent 995e4cc467
commit b028c86b20
8 changed files with 80 additions and 12 deletions

View File

@ -10,7 +10,6 @@ class MkdirCommand(BaseCommand):
@classmethod
def register(cls, parsers: _SubParsersAction) -> None:
command = cls()
# mkdir
mkdir_parser = parsers.add_parser("mkdir", help="create a new folder")
mkdir_parser.add_argument("remote_path", help="remote folder path (remote:/lab/path/)")
mkdir_parser.set_defaults(func=command.mkdir)