Files
mcpacker/mcpacker/format/composer.py
T

17 lines
350 B
Python

from typing import Self
# Class ############################################################################################
class Composer:
def __str__(self) -> str:
raise NotImplementedError()
def compose(self) -> Self:
self.doCompose()
return self
def doCompose(self):
raise NotImplementedError()