Source code for ska_sdp_config.operations.controller

"""
Controller management for SDP Configuration Database.
"""

from ..base_transaction import BaseTransaction
from .entity_operations import EntityOperations


[docs] class ControllerOperations(EntityOperations): """Database operations related to controller management.""" PATH = "/lmc/controller" def __init__(self, base_txn: BaseTransaction): super().__init__(base_txn, self.PATH)