PS.Module.Docs.psm1
|
Set-StrictMode -Version Latest function Test-Function { <# .SYNOPSIS Placeholder command used to validate module packaging and export. .DESCRIPTION Returns a simple status object so the module has at least one exported command for PowerShell Gallery publishing and CI validation. .EXAMPLE Test-Function #> [CmdletBinding()] [OutputType([pscustomobject])] param() [pscustomobject]@{ PSTypeName = 'PS.Module.Docs.TestResult' ModuleName = 'PS.Module.Docs' Status = 'OK' Timestamp = [datetime]::UtcNow } } |