pub fn blocking_get_auth(
server_url: Url,
space: SpaceId,
verifier: DynVerifier,
auth_material: Option<&AuthMaterial>,
) -> K2Result<Vec<Arc<AgentInfoSigned>>>Expand description
Get all agent infos from the bootstrap server for the given space.
Note the blocking_ prefix. This is a hint to the caller that if the
function is used in an async context, it should be treated as a blocking
operation.