11 lines
211 B
Python
Executable file
11 lines
211 B
Python
Executable file
#!/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()
|