Lines 7-12
import ItemAPIClient from "./item-api-client";
Link Here
|
7 |
import RecordSourcesAPIClient from "./record-sources-api-client"; |
7 |
import RecordSourcesAPIClient from "./record-sources-api-client"; |
8 |
import SysprefAPIClient from "./system-preferences-api-client"; |
8 |
import SysprefAPIClient from "./system-preferences-api-client"; |
9 |
import PreservationAPIClient from "./preservation-api-client"; |
9 |
import PreservationAPIClient from "./preservation-api-client"; |
|
|
10 |
import LibraryAPIClient from "./library-api-client"; |
10 |
|
11 |
|
11 |
export const APIClient = { |
12 |
export const APIClient = { |
12 |
erm: new ERMAPIClient(), |
13 |
erm: new ERMAPIClient(), |
Lines 18-21
export const APIClient = {
Link Here
|
18 |
sysprefs: new SysprefAPIClient(), |
19 |
sysprefs: new SysprefAPIClient(), |
19 |
preservation: new PreservationAPIClient(), |
20 |
preservation: new PreservationAPIClient(), |
20 |
record_sources: new RecordSourcesAPIClient(), |
21 |
record_sources: new RecordSourcesAPIClient(), |
|
|
22 |
libraries: new LibraryAPIClient(), |
21 |
}; |
23 |
}; |