Contents:
from abc import ABC, abstractmethod from typing import List from cyclonedx.model.component import Component [docs] class BaseJakeParser(ABC): @abstractmethod [docs] def get_components(self) -> List[Component]: pass