backend #4

Merged
pascal merged 6 commits from backend into main 2025-09-18 12:09:50 +00:00
Showing only changes of commit 774fa3484c - Show all commits

View File

@@ -5,3 +5,11 @@ from pydantic import BaseModel
class ExampleSchema(BaseModel):
example_field: str
another_field: int
class ClusterCreds(BaseModel):
"""A structure to hold basic auth cluster credentials for a cluster"""
username: str
password: str
hostname: str = None
cert_filepath: Path = None
key_filepath: Path = None