A Slack Bot that pulls Pixiv information and posts the full image(s) into Slack, with iOS shortcuts.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
338 B

  1. require 'slack-mathbot/version'
  2. require 'slack-mathbot/about'
  3. require 'slack-mathbot/config'
  4. require 'slack-mathbot/hooks'
  5. require 'slack-mathbot/commands'
  6. require 'slack-mathbot/app'
  7. module SlackMathbot
  8. class << self
  9. def configure
  10. block_given? ? yield(Config) : Config
  11. end
  12. def config
  13. Config
  14. end
  15. end
  16. end