mirror of
https://github.com/goharbor/harbor
synced 2025-04-22 20:26:02 +00:00

This patch provides a command-line tool for managing Harbor resources like users, projects, images, etc.
8 lines
178 B
Python
8 lines
178 B
Python
from harborclient import base
|
|
|
|
|
|
class ConfigurationManager(base.Manager):
|
|
def get(self):
|
|
"""Get system configurations."""
|
|
return self._get("/configurations")
|