mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
17 lines
303 B
Ruby
17 lines
303 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
require "cask/artifact/moved"
|
|
|
|
module Cask
|
|
module Artifact
|
|
# Artifact corresponding to the `vst3_plugin` stanza.
|
|
class Vst3Plugin < Moved
|
|
sig { returns(String) }
|
|
def self.english_name
|
|
"VST3 Plugin"
|
|
end
|
|
end
|
|
end
|
|
end
|