i simply want to get the datastore name from my azure workspace so I can use it in databricks. i found this code
import azureml.core
from azureml.core import Workspace, Datastore
ws = load_workspace_from_config(path="config.json")
ds = get_default_datastore(ws)
print(ds)
I am facing error on this that
NameError: name 'load_workspace_from_config' is not defined