summaryrefslogtreecommitdiff
path: root/lib/gitlab/slash_commands/result.rb
blob: 607c9c8dec151c0c9cb7819a4aab3e25e0636a16 (plain)
1
2
3
4
5
6
7
8
# rubocop:disable Naming/FileName
# frozen_string_literal: true

module Gitlab
  module SlashCommands
    Result = Struct.new(:type, :message)
  end
end