GinShell.Logging/GinShell.Logging.psd1

@{
    RootModule        = 'GinShell.Logging.psm1'
    ModuleVersion     = '0.0.2'
    GUID              = 'a1b2c3d4-1001-4000-8000-000000000001'
    Author            = 'Abdur Rashid Mondal'
    CompanyName       = 'Ginni System Limited'
    Copyright         = '(c) Abdur Rashid Mondal. All rights reserved.'
    Description       = 'Structured logging (console, file, Loki) for GinShell modules.'

    FunctionsToExport = @(
        'Write-GsLog',
        'Write-GsLokiLog'
    )
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()

    PrivateData = @{
        PSData = @{
            Tags = @('Logging', 'Loki', 'GinShell')
        }
    }
}