blueprint-compiler/blueprintcompiler/outputs/__init__.py
2022-12-19 11:52:59 -06:00

9 lines
148 B
Python

from ..language import UI
class OutputFormat:
def emit(self, ui: UI) -> str:
raise NotImplementedError()
from .xml import XmlOutput