Templates/Function.KraneTemplate.ps1

function ###FunctionName### {
<#
.SYNOPSIS
    ###FunctionName### helps to....
.DESCRIPTION
    A longer description of the function, its purpose, common use cases, etc.
.NOTES
    ChangeLog:
        v0.0.1: Generated with love using PsKrane
.LINK
    https://github.com/Stephanevg/PsKrane
.EXAMPLE
    ###FunctionName###
#>


    [CmdletBinding()]
    param (
        
    )
    
}