12 lines
211 B
Text
12 lines
211 B
Text
|
#!/usr/bin/env python3
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'python'))
|
||
|
from qemu.qmp import qmp_shell
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
qmp_shell.main_wrap()
|