mirror of
https://github.com/nichkara/InfinitumBotty.git
synced 2026-06-11 14:41:58 +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�"
|
|
|
|
def get_definiton(self, name):
|
|
"""
|
|
|
|
:param name: name of definition to get
|
|
:return: the definition
|
|
"""
|
|
return "Konnte Definition nicht finden" |