Welcome to mirror list, hosted at ThFree Co, Russian Federation.

base.rb « badge « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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