2020-08-26 03:13:59 +02:00

14 lines
207 B
Ruby

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