]> git.proxmox.com Git - mirror_qemu.git/blob - scripts/qmp/qmp-shell
Merge tag 'pull-vfio-20240129' of https://github.com/legoater/qemu into staging
[mirror_qemu.git] / scripts / qmp / qmp-shell
1 #!/usr/bin/env python3
2
3 import os
4 import sys
5
6 sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'python'))
7 from qemu.qmp import qmp_shell
8
9
10 if __name__ == '__main__':
11 qmp_shell.main()