mirror of
https://github.com/goharbor/harbor
synced 2025-04-16 18:57:59 +00:00

This patch provides a command-line tool for managing Harbor resources like users, projects, images, etc.
8 lines
207 B
Python
8 lines
207 B
Python
from harborclient import base
|
|
|
|
|
|
class SearchManager(base.Manager):
|
|
def search(self, query):
|
|
"""Search for projects and repositories."""
|
|
return self.api.client.get("/search?q=%s" % query)
|