Source code for core.DrawInterface

from abc import ABC, abstractmethod


[docs] class DrawInterface(ABC):
[docs] @abstractmethod def to_dot(self) -> str: pass