handle.psd1

@{
  RootModule = 'handle.psm1'
  ModuleVersion = '1.0.0.0'
  CompatiblePSEditions = 'Core'
  GUID = 'da53043c-7ebf-450a-aeb6-d2cb9f1c98f4'
  Author = 'greg zakharov'
  Copyright = 'MIT'
  Description = 'Get information about opened handles of a process.'
  PowerShellVersion = '6.1'
  AliasesToExport = 'handle'
  FunctionsToExport = 'Get-PsHandles'
  FileList = @(
    'handle.psd1',
    'handle.psm1'
  )
}