🔧 Renamed IMPORT_* to LIBRARY_*

This commit is contained in:
2022-02-03 00:19:32 -08:00
parent bcfc174829
commit c6265599de
14 changed files with 70 additions and 51 deletions

View File

@@ -37,17 +37,17 @@ export const API_BASE_URI = hostURIBuilder({
apiPath: "/api",
});
export const IMPORT_SERVICE_HOST = hostURIBuilder({
export const LIBRARY_SERVICE_HOST = hostURIBuilder({
protocol: "http",
host: process.env.UNDERLYING_HOSTNAME || "localhost",
port: "3000",
apiPath: ``,
});
export const IMPORT_SERVICE_BASE_URI = hostURIBuilder({
export const LIBRARY_SERVICE_BASE_URI = hostURIBuilder({
protocol: "http",
host: process.env.UNDERLYING_HOSTNAME || "localhost",
port: "3000",
apiPath: "/api/import",
apiPath: "/api/library",
});
export const SETTINGS_SERVICE_BASE_URI = hostURIBuilder({