mirror of
https://github.com/nichkara/InfinitumBotty.git
synced 2026-06-10 22:26:23 +02:00
18 lines
388 B
Python
18 lines
388 B
Python
class TextProvider(object):
|
||
"""
|
||
Provides different Texts
|
||
"""
|
||
|
||
def get_random_fortune(self):
|
||
"""
|
||
:return: a random sentence
|
||
"""
|
||
return "Das macht Spa<70>"
|
||
|
||
def get_definiton(self, name):
|
||
"""
|
||
|
||
:param name: name of definition to get
|
||
:return: the definition
|
||
"""
|
||
return "Konnte Definition nicht finden" |