made a dummy list method for when CG gets the json logging going

This commit is contained in:
cktricky
2018-03-05 16:01:27 -05:00
parent 2245a0ab56
commit 61e470df94

View File

@@ -17,6 +17,7 @@ parser.add_argument("-s", "--step", help="list the step you would like to run",
action="store", type=str, required=True) action="store", type=str, required=True)
parser.add_argument("-t", "--target", help="Give your target a name so we can track results", parser.add_argument("-t", "--target", help="Give your target a name so we can track results",
action="store", type=str, required=True) action="store", type=str, required=True)
parser.add_argument("-l", "--list", help="list steps", action="store_true")
parser.add_argument("-v", "--verbosity", help="increase output verbosity", parser.add_argument("-v", "--verbosity", help="increase output verbosity",
action="store_true") action="store_true")
args = parser.parse_args() args = parser.parse_args()
@@ -47,6 +48,9 @@ else:
print("Please supply keys as outlined in our README.md file") print("Please supply keys as outlined in our README.md file")
#exit(1) #exit(1)
if (args.list):
pass
# We need the user to tell us the step they want to proceed on # We need the user to tell us the step they want to proceed on
if (args.step): if (args.step):
arg = method_create() arg = method_create()