from typing import List

from swagger_server.eu.dnetlib.DLIESConnector import DLIESConnector

c = DLIESConnector()
def list_datasources_get(page=None):
    """
    Get the list of all Datasources
    The realtionFromDatasource endpoint returns a list of scholix object collected from a specific datasource 
    :param page: The page of results
    :type page: int

    :rtype: List[str]
    """
    
    return c.list_datasources()
