__init__.py 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. "groupme": "All your friends are right here, Neil!",
  23. },
  24. aliases={
  25. "speemteek": "speamteek",
  26. "speemteak": "speamteek",
  27. "speamteak": "speamteek",
  28. "interpret": "inspire",
  29. "horoscope": "inspire",
  30. "lomg": "bump",
  31. "mute": "bump",
  32. "fs": "f",
  33. "hg": "hangguy",
  34. "cookie": "fortune",
  35. "wl": "watchlist",
  36. },
  37. )
  38. )