mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-23 10:45:45 +01:00
8 lines
196 B
Python
8 lines
196 B
Python
|
from harborclient import base
|
||
|
|
||
|
|
||
|
class LogManager(base.Manager):
|
||
|
def list(self):
|
||
|
"""Get recent logs of the projects which the user is a member of."""
|
||
|
return self._list("/logs")
|