pdca0-dev-hub/cmd/pdca0-be.ps1

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
}