refactor librefit and added docstrings

This commit is contained in:
2025-09-30 20:56:27 +02:00
parent a0f2f83a8a
commit efcec653cb
5 changed files with 46 additions and 24 deletions

View File

@@ -70,6 +70,12 @@ create_parser.add_argument(
create_parser.add_argument(
"--filemode", action="store_true", help="creates files instead of directories"
)
create_parser.add_argument(
"-r",
"--recursive",
nargs="*",
help="Sets the recursive mode for folders to true. First argumet\n is for the depth and the second for the width.",
)
create_parser.set_defaults(command_class=Refit_Create)
args = parser.parse_args()