13 lines
271 B
Python
Executable file
13 lines
271 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
"""
|
|
test/start-coin-daemons.py: Start daemons for the MMGen test suite
|
|
"""
|
|
|
|
try:
|
|
from include.coin_daemon_control import main
|
|
except ImportError:
|
|
from test.include.coin_daemon_control import main
|
|
|
|
from mmgen.main import launch
|
|
launch(func=main)
|