WebServer.psm1

<#
.SYNOPSIS
Powershell WebServer is a module that starts a webserver (without the need for IIS).
.NOTES
Version: 1.0.5
Date: 2022-07-31
Author: Markus Scholtes
#>


# Load modules manually for security reasons
. "$PSScriptRoot/Start-Webserver.ps1"

# Export functions
Export-ModuleMember -Function @(
    'Start-Webserver'
)