8 lines
453 B
Python
8 lines
453 B
Python
def proto_args(parser, std_parser, module_parser):
|
|
ftp_parser = parser.add_parser("ftp", help="own stuff using FTP", parents=[std_parser, module_parser])
|
|
ftp_parser.add_argument("--port", type=int, default=21, help="FTP port (default: 21)")
|
|
|
|
cgroup = ftp_parser.add_argument_group("FTP Access", "Options for enumerating your access")
|
|
cgroup.add_argument("--ls", action="store_true", help="List files in the directory")
|
|
return parser
|