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

module Gitlab::Ci
  module Badge
    class Base
      def entity
        raise NotImplementedError
      end

      def status
        raise NotImplementedError
      end

      def metadata
        raise NotImplementedError
      end

      def template
        raise NotImplementedError
      end
    end
  end
end