11 lines
260 B
PowerShell
11 lines
260 B
PowerShell
# Avvia la UI dei tool backend PDCA0
|
|
|
|
$scriptPath = Resolve-Path (Join-Path $PSScriptRoot '../src/darwin/backend/ui.ps1')
|
|
|
|
if (Test-Path $scriptPath) {
|
|
& $scriptPath
|
|
} else {
|
|
Write-Host "File non trovato: $scriptPath" -ForegroundColor Red
|
|
exit 1
|
|
}
|