Merge branch 'master' into 13765-information-inside-details-panel
[arvados-workbench2.git] / src / services / services.ts
index 2a903b4ceafaede952ede886194eafe152f0b9b5..1e9a74dd3fbf3b22d50c4ea8faec96f5a8452cff 100644 (file)
@@ -3,5 +3,12 @@
 // SPDX-License-Identifier: AGPL-3.0
 
 import AuthService from "./auth-service/auth-service";
+import CollectionService from "./collection-service/collection-service";
+import GroupsService from "./groups-service/groups-service";
+import { serverApi } from "../common/api/server-api";
+import ProjectService from "./project-service/project-service";
 
 export const authService = new AuthService();
+export const collectionService = new CollectionService();
+export const groupsService = new GroupsService(serverApi);
+export const projectService = new ProjectService(serverApi);