Skip to content

Commit af4d6d2

Browse files
authored
Update http.py
1 parent 1ce720d commit af4d6d2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

vvclient/http.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# vvclient - http
22

3-
from typing import Any, Dict, Union
3+
from typing import Any, Dict, Union, List
44

55
from aiohttp import ClientSession
66

@@ -53,3 +53,6 @@ async def synthesis(
5353

5454
async def engine_version(self) -> str:
5555
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

Comments
 (0)