[docs]defservice_info(url:str)->Dict[str,Any]:""" Get information about the Gobbler service, namely the locations of the staging directory and registry. Args: url: URL of the gobbler REST API. Returns: Dictionary containing the location of the staging and registry directories. """res=requests.get(url+"/info")ifres.status_code>=300:raiseut.format_error(res)returnres.json()