We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ce720d commit af4d6d2Copy full SHA for af4d6d2
vvclient/http.py
@@ -1,6 +1,6 @@
1
# vvclient - http
2
3
-from typing import Any, Dict, Union
+from typing import Any, Dict, Union, List
4
5
from aiohttp import ClientSession
6
@@ -53,3 +53,6 @@ async def synthesis(
53
54
async def engine_version(self) -> str:
55
return await self.request(Route("GET", "/version"))
56
+
57
+ async def core_versions(self) -> List[str]:
58
+ return await self.request(Route("GET", "/core_versions"))
0 commit comments