Merge branch 'master' into 13703-data-explorer-and-contents-api
[arvados.git] / src / services / services.ts
index 2a903b4ceafaede952ede886194eafe152f0b9b5..51d2b760e39d1f006772aab5a453dff1dfbb6e63 100644 (file)
@@ -3,5 +3,10 @@
 // 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";
 
 export const authService = new AuthService();
+export const collectionService = new CollectionService();
+export const groupsService = new GroupsService(serverApi);