summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/pipeline/seed/base.rb
blob: e9e22569ae064de0d281498dcb4e2368dfa905af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

module Gitlab
  module Ci
    module Pipeline
      module Seed
        class Base
          def attributes
            raise NotImplementedError
          end

          def included?
            raise NotImplementedError
          end

          def errors
            raise NotImplementedError
          end

          def to_resource
            raise NotImplementedError
          end
        end
      end
    end
  end
end