forked from p34709852/monkey
8 lines
218 B
Python
8 lines
218 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
from gcp_test_machine_list import GCP_TEST_MACHINE_LIST
|
||
|
from utils.gcp_machine_handlers import GCPHandler
|
||
|
|
||
|
gcp_handler = GCPHandler()
|
||
|
gcp_handler.start_machines(" ".join(GCP_TEST_MACHINE_LIST))
|