Stub in framework for new .net Open Jibo cloud

This commit is contained in:
Jacob Dubin
2026-04-11 07:12:57 -05:00
parent 0c040d1348
commit 8f838787a0
54 changed files with 1933 additions and 897 deletions

View File

@@ -0,0 +1,23 @@
param(
[string]$TargetIp,
[string[]]$HostNames = @(
"api.jibo.com",
"api-socket.jibo.com",
"neo-hub.jibo.com",
"neohub.jibo.com"
)
)
if ([string]::IsNullOrWhiteSpace($TargetIp)) {
throw "TargetIp is required."
}
$entries = foreach ($host in $HostNames) {
[pscustomobject]@{
Host = $host
TargetIp = $TargetIp
HostsFileLine = "$TargetIp`t$host"
}
}
$entries | Format-Table -AutoSize