blueprint-compiler/blueprintcompiler/outputs/__init__.py
2022-10-15 19:40:47 -05:00

7 lines
146 B
Python

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