2020-10-10 14:59:39 +02:00

15 lines
231 B
Ruby

# typed: strict
# frozen_string_literal: true
require "cask/artifact/moved"
module Cask
module Artifact
# Artifact corresponding to the `service` stanza.
#
# @api private
class Service < Moved
end
end
end