Initalize repo

This commit is contained in:
BaerbelBox
2022-03-31 15:21:47 +02:00
parent 557f3e9b31
commit 7cf65ef092
98 changed files with 15860 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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"