mirror of
https://github.com/benclaussen/NetboxPS.git
synced 2025-12-13 09:52:29 +00:00
10 lines
No EOL
513 B
PowerShell
10 lines
No EOL
513 B
PowerShell
# Build a list of common paramters so we can omit them to build URI parameters
|
|
$script:CommonParameterNames = New-Object System.Collections.ArrayList
|
|
[void]$script:CommonParameterNames.AddRange(@([System.Management.Automation.PSCmdlet]::CommonParameters))
|
|
[void]$script:CommonParameterNames.AddRange(@([System.Management.Automation.PSCmdlet]::OptionalCommonParameters))
|
|
[void]$script:CommonParameterNames.Add('Raw')
|
|
|
|
SetupNetboxConfigVariable
|
|
|
|
Export-ModuleMember -Function *
|
|
#Export-ModuleMember -Function *-* |