]> git.proxmox.com Git - mirror_qemu.git/blame - scripts/qmp/qemu-ga-client
Merge remote-tracking branch 'remotes/hdeller/tags/hppa-updates-pull-request' into...
[mirror_qemu.git] / scripts / qmp / qemu-ga-client
CommitLineData
88fb483f
JS
1#!/usr/bin/env python3
2
3import os
4import sys
5
6sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'python'))
0347c4c4 7from qemu.utils import qemu_ga_client
88fb483f
JS
8
9
10if __name__ == '__main__':
11 sys.exit(qemu_ga_client.main())