git://git.qemu.org
/
qemu.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Merge tag 'pull-la-20220805' of https://gitlab.com/rth7680/qemu into staging
[qemu.git]
/
scripts
/
qmp
/
qom-get
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.utils.qom import QOMGet
8
9
10
if __name__ == '__main__':
11
sys.exit(QOMGet.entry_point())