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: 3669dedf0fe9f8c2fcfcf64c82d359bd1ee3c0b6 (plain)
1
2
3
4
5
module Gitlab # rubocop:disable Naming/FileName
  module SlashCommands
    Result = Struct.new(:type, :message)
  end
end