qmp-shell-wrap 211 B

1234567891011
  1. #!/usr/bin/env python3
  2. import os
  3. import sys
  4. sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'python'))
  5. from qemu.qmp import qmp_shell
  6. if __name__ == '__main__':
  7. qmp_shell.main_wrap()