9 lines
279 B
Python
9 lines
279 B
Python
|
from bot.mdict.terms.base.jitenon import JitenonTerminator
|
||
|
from bot.mdict.glossary.jitenon import JitenonKokugoGlossary
|
||
|
|
||
|
|
||
|
class Terminator(JitenonTerminator):
|
||
|
def __init__(self, target):
|
||
|
super().__init__(target)
|
||
|
self._glossary_maker = JitenonKokugoGlossary()
|