gitlab-org--gitlab-foss/lib/gitlab/ci/badge/base.rb

24 lines
348 B
Ruby

# 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