Total Complexity | 0 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | import argparse |
||
2 | |||
3 | |||
4 | parser = argparse.ArgumentParser(description='Fuzz the system') |
||
5 | parser.add_argument('--host', help='Api server\'s host-name.') |
||
6 | parser.add_argument('--port', help='Port on which the server is running.') |
||
7 | parser.add_argument('--api-json', help='File containing api endpoint and expected request objects') |
||
8 | |||
9 | |||
10 | cli_args = parser.parse_args() |
||
11 |