File size: 452 Bytes
8c763fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | @{
ModuleVersion = '1.0.0'
GUID = '86471f04-5b94-4136-a299-caf98464a06b'
Author = 'PowerShell'
Description = 'An UnixSocket Server for testing purposes'
RootModule = 'UnixSocket.psm1'
RequiredModules = @()
FunctionsToExport = @(
'Get-UnixSocket'
'Get-UnixSocketName'
'Get-UnixSocketUri'
'Start-UnixSocket'
'Stop-UnixSocket'
)
AliasesToExport = @()
CmdletsToExport = @()
}
|