mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2026-04-18 13:33:31 +00:00
run through formatter
This commit is contained in:
@@ -22,7 +22,7 @@ class Remote {
|
||||
}
|
||||
|
||||
[string] ToString() {
|
||||
return "Voicemeeter " + $this.kind.name.substring(0, 1).toupper() + $this.kind.name.substring(1)
|
||||
return 'Voicemeeter ' + $this.kind.name.substring(0, 1).toupper() + $this.kind.name.substring(1)
|
||||
}
|
||||
|
||||
[Remote] Login() {
|
||||
@@ -138,13 +138,13 @@ Function Get-RemotePotato {
|
||||
Function Connect-Voicemeeter {
|
||||
param([String]$Kind)
|
||||
switch ($Kind) {
|
||||
"basic" {
|
||||
'basic' {
|
||||
return Get-RemoteBasic
|
||||
}
|
||||
"banana" {
|
||||
'banana' {
|
||||
return Get-RemoteBanana
|
||||
}
|
||||
"potato" {
|
||||
'potato' {
|
||||
return Get-RemotePotato
|
||||
}
|
||||
default {
|
||||
|
||||
Reference in New Issue
Block a user