mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 15:19:58 -05:00
15 lines
338 B
PowerShell
15 lines
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;
|