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: a66a2e0726bf11fd7351cced809b1fbf0326761f (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

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