adamcook-mycicdtestrepo.psm1
#region Private functions function SomeInternalFunction { param( ) Write-Output "I do not do much" } #endregion #region Public functions function Get-Day { [CmdletBinding()] param ( ) Get-Date -Format "dd" } function Get-Month { [CmdletBinding()] param ( ) Get-Date -Format "MM" } function Get-Year { [CmdletBinding()] param ( ) Get-Date -Format "yyyy" } #endregion |