2024-07-09 13:14:29 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2024-09-07 11:52:32 +00:00
|
|
|
"isle/bootstrap"
|
2024-07-09 13:14:29 +00:00
|
|
|
)
|
|
|
|
|
2024-09-07 11:52:32 +00:00
|
|
|
func (ctx subCmdCtx) getHosts() ([]bootstrap.Host, error) {
|
2024-11-19 13:12:17 +00:00
|
|
|
return ctx.getDaemonRPC().GetHosts(ctx)
|
2024-07-09 13:14:29 +00:00
|
|
|
}
|