mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-20 23:00:35 -05:00
15 lines
No EOL
338 B
PowerShell
15 lines
No EOL
338 B
PowerShell
# App configuration
|
|
$App = @{
|
|
LogSeverity = [PSCustomObject]@{
|
|
PSTypeName = "LogSeverity"
|
|
Info = 0
|
|
Warning = 1
|
|
Error = 2
|
|
Exception = 3
|
|
Debug = 4
|
|
};
|
|
RootPath = $_InternalTempVariables.RootPath;
|
|
ModuleName = $_InternalTempVariables.ModuleName;
|
|
}
|
|
|
|
return $App; |