use of org.pmiops.workbench.notebooks.api.NotebooksApi in project workbench by all-of-us.
the class NotebooksConfig method notebooksApi.
@Bean
@RequestScope(proxyMode = ScopedProxyMode.DEFAULT)
public NotebooksApi notebooksApi(@Qualifier(NOTEBOOKS_CLIENT) ApiClient apiClient) {
NotebooksApi api = new NotebooksApi();
api.setApiClient(apiClient);
return api;
}
Aggregations