diff --git a/functions.py b/functions.py index 77c2ace..69ee436 100644 --- a/functions.py +++ b/functions.py @@ -95,3 +95,22 @@ def roadster(): print("error") return data + + +def about(): + """ + Just returns information about the bot. + """ + return { + "description": "This is a simple bot used to demonstrate how to easily port the same bot to multiple platforms such as Discord and Telegram", + "functions": [ + ( + "roadster", + "Provides simple information about the Tesla Roadster launched into space by Elon Musk as a dummy payload to test the Falcon Heavy Rocket", + ), + ("launch", "Provides details on the next rocket launch happening."), + ], + "repo": "https://gitlab.com/MisterBiggs/multi-bot-tutorial", + "blogPost": "https://blog.ansonbiggs.com/", + } +