serradura/slack-time-tracker

View on GitHub
app/lib/slash_command/commands/default.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module SlashCommand
  module Commands
    class Default < Template
      NAME = "default"

      def call
        response.result = Help.help
      end
    end
  end
end