GraphAPI.psd1

@{
    RootModule        = 'GraphAPI.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = '15db5044-5b2a-4993-8caf-d206ff5a9a96'
    Author            = 'Jordan Turner'
    CompanyName       = 'Jordan Turner'
    Copyright         = '(c) Jordan Turner. All rights reserved.'
    Description       = 'Minimal module'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-GraphAPIStatus', 'Initialize-GraphAPI')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}