Decoupled services from redux
[arvados.git] / src / services / services.ts
index 2a903b4ceafaede952ede886194eafe152f0b9b5..47a24b344aaa7d43c0f257d3c47aabd526995368 100644 (file)
@@ -3,5 +3,9 @@
 // SPDX-License-Identifier: AGPL-3.0
 
 import AuthService from "./auth-service/auth-service";
+import ProjectService from "./project-service/project-service";
+import CollectionService from "./collection-service/collection-service";
 
 export const authService = new AuthService();
+export const projectService = new ProjectService();
+export const collectionService = new CollectionService();