9 lines
266 B
Python
9 lines
266 B
Python
|
class VieterBuildLogs:
|
||
|
def __init__(self, vieter):
|
||
|
self._vieter = vieter
|
||
|
|
||
|
async def list(self, offset: int = 0, limit: int = 25):
|
||
|
params = {"offset": offset, "limit": limit}
|
||
|
|
||
|
return await self._vieter._get("/api/logs", params=params)
|