This repository has been archived on 2026-02-22. You can view files and clone it, but cannot push or open issues/pull-requests.
|
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)
|