summaryrefslogtreecommitdiff
path: root/lib/gitlab/badge/base.rb
blob: fb55b9e2f1f70694a993d82d1d42b8f12a445345 (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
  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