Templates/Function.KraneTemplate.ps1
function ###FunctionName### { <# .SYNOPSIS A short one-line action-based description, e.g. 'Tests if a function is valid' .DESCRIPTION A longer description of the function, its purpose, common use cases, etc. .NOTES Generated with love using PsKrane .LINK https://github.com/Stephanevg/PsKrane .EXAMPLE ###FunctionName### #> [CmdletBinding()] param ( ) } |