mirror of
https://github.com/System-End/cdn.git
synced 2026-04-19 22:05:13 +00:00
7 lines
166 B
Ruby
7 lines
166 B
Ruby
# frozen_string_literal: true
|
|
|
|
class SlackService
|
|
def self.client
|
|
@client ||= Slack::Web::Client.new(token: Rails.application.config.slack.bot_token)
|
|
end
|
|
end
|