Sha256: 4c49643522612fffae992a1220a42dc711aa2db066e4cba7c65182e7a9f41e1e
Contents?: true
Size: 276 Bytes
Versions: 5
Compression:
Stored size: 276 Bytes
Contents
# frozen_string_literal: true module Gitlab module Triage module Action class Base attr_reader :policy, :network def initialize(**args) @policy = args[:policy] @network = args[:network] end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems