Decoupled services from redux
[arvados.git] / src / services / services.ts
index ea72001a2849bd983aabbe1c16067c4166b46690..47a24b344aaa7d43c0f257d3c47aabd526995368 100644 (file)
@@ -4,6 +4,8 @@
 
 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();