__init__.py 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. import pkgutil
  2. from rollbot import get_command_config, CommandConfiguration
  3. for loader, module_name, is_pkg in pkgutil.walk_packages(__path__):
  4. _module = loader.find_module(module_name).load_module(module_name)
  5. globals()[module_name] = _module
  6. __all__ = ["config"]
  7. config = get_command_config().extend(
  8. CommandConfiguration(
  9. call_and_response={
  10. "info": "Hello!\nI am Rollbot 4.0 - a simple chatbot built in Python.\nI am licensed as open source under the MIT license.",
  11. "thanks": "You're welcome!",
  12. "guess": "Rollbot's back - tell a friend!",
  13. "unmeme": "get a job",
  14. "issues": "https://gogs.hiram.services/kirkleon/rollbot4/issues",
  15. "repo": "https://gogs.hiram.services/kirkleon/rollbot4/",
  16. "bump": "Bumping the chat!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAll done!",
  17. "vore": "What? No",
  18. "break": "I'm too robust for that!",
  19. "rampart": "Hey guys can we please keep the topic to Rampart?",
  20. "panic": "https://imgur.com/PjAtZDp",
  21. "ah": "https://i.groupme.com/810x677.jpeg.8399fce5295f4116b152f7daa474353a.large",
  22. "sir": "https://i.groupme.com/368x475.png.01b9aa943ce040ebb4a893aae3d266f8.large",
  23. "groupme": "All your friends are right here, Neil!",
  24. },
  25. aliases={
  26. "speemteek": "speamteek",
  27. "speemteak": "speamteek",
  28. "speamteak": "speamteek",
  29. "interpret": "inspire",
  30. "horoscope": "inspire",
  31. "lomg": "bump",
  32. "mute": "bump",
  33. "fs": "f",
  34. "hg": "hangguy",
  35. "cookie": "fortune",
  36. "wl": "watchlist",
  37. },
  38. )
  39. )