File size: 396 Bytes
c8fb072 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | from src.sdlc.states.states import State
from src.sdlc import logger
class ConsolidatedNode:
"""
Node logic implementation.
"""
def process(self, state: State) -> dict:
"""
Gets all artifacts from state to display.
"""
logger.info("IN CONSOLIDATED NODE,displaying artifacts...")
return {"consolidated_artifacts":"Display artifacts"}
|