debian-mirror-gitlab/lib/gitlab/ci/badge/base.rb
2021-03-11 19:13:27 +05:30

23 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