brew/Library/Homebrew/cask/artifact/vst3_plugin.rb
Douglas Eichelberger 24cf6076e8 brew style --fix
2023-04-24 20:42:39 -07:00

19 lines
328 B
Ruby

# typed: strict
# frozen_string_literal: true
require "cask/artifact/moved"
module Cask
module Artifact
# Artifact corresponding to the `vst3_plugin` stanza.
#
# @api private
class Vst3Plugin < Moved
sig { returns(String) }
def self.english_name
"VST3 Plugin"
end
end
end
end