functions/Start-Jq.ps1
function Start-Jq { <# .SYNOPSIS Start-Jq .Description TODO: Create function Description documentation for this command .Parameter [String]$Name TODO: Create function Parameter documentation for this command .EXAMPLE Install-Jq TODO: Create function EXAMPLE documentation for this command .NOTES Name: Install-Jq Author: Felix Scholz Version: 0.0.1.0 DateCreated: 2024-01-16 .LINK TODO: Add link in documentation for this command .COMPONENT Requires PSEdition Core Requires Version 7.0 or above #> [CmdletBinding()] param( [Parameter()] [String]$Name ) BEGIN {} PROCESS { } END {} } |