mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-marshoai.git
synced 2024-11-23 17:45:04 +08:00
15 lines
311 B
Python
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
|