blob: d6626fd1f36dff536c446099aa0d47d1986415d8 (
plain)
| 1
2
3
4
5
6
7
 | # typing information for composite functions: those that invoke several
# elementary requests, and return the result as a single dict
def system_status():
    pass
queries = {'system_status': system_status}
mutations = {}
 |