mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
7 lines
146 B
Python
7 lines
146 B
Python
from ..language import UI
|
|
|
|
class OutputFormat:
|
|
def emit(self, ui: UI) -> str:
|
|
raise NotImplementedError()
|
|
|
|
from .xml import XmlOutput
|