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

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

# rubocop:enable Naming/FileName