isle/go/cmd/entrypoint/client.go

10 lines
147 B
Go
Raw Normal View History

2024-07-09 13:14:29 +00:00
package main
import (
"isle/bootstrap"
2024-07-09 13:14:29 +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
}