FITS.NetUtils.psd1

@{
    RootModule           = 'FITS.NetUtils.psm1'
    ModuleVersion        = '0.2.0'
    GUID                 = 'a71b4ffb-e063-47c8-8fd9-5da9776707dc'
    Author               = 'Daniel Feiler'
    CompanyName          = 'FITS'
    Copyright            = '(c) Daniel Feiler. All rights reserved.'
    Description          = 'Network utility functions, including a full RFC 2030/5905 compliant NTP client (Get-NTPTime) with IPv4/IPv6 support and configurable address selection.'
    PowerShellVersion    = '5.1'

    FunctionsToExport    = @('Get-NTPTime')
    CmdletsToExport      = @()
    VariablesToExport    = @()
    AliasesToExport      = @()

    PrivateData          = @{
        PSData = @{
            Tags       = @('NTP', 'Network', 'Time', 'RFC5905', 'IPv6')
            ProjectUri = 'https://github.com/Feiler-Development/FITS.NetUtils'
        }
    }
}