This repository has been archived on 2024-10-02. You can view files and clone it, but cannot push or open issues or pull requests.
marsho-alpha/models.py

15 lines
311 B
Python

from .util import *
class MarshoContext:
def __init__(self):
self.contents = []
def append(self, content):
self.contents.append(content)
def reset(self):
self.contents.clear()
def build(self):
spell = get_default_spell()
return [spell] + self.contents