11 lines
219 B
Python
Executable File
11 lines
219 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
import tempfile
|
|
from test_process import put_signal_file
|
|
|
|
|
|
if __name__ == '__main__':
|
|
if sys.argv[1] == 'startingUp':
|
|
put_signal_file(tempfile.gettempdir(), '.api_started')
|