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