Welcome to mirror list, hosted at ThFree Co, Russian Federation.

result.rb « slash_commands « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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