Create GroupsService and implement contents method
[arvados-workbench2.git] / src / services / services.ts
index 47a24b344aaa7d43c0f257d3c47aabd526995368..7ad2ff7d855dcbc45c64836c8a8b7d7fbfeb96be 100644 (file)
@@ -5,7 +5,10 @@
 import AuthService from "./auth-service/auth-service";
 import ProjectService from "./project-service/project-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 projectService = new ProjectService();
 export const collectionService = new CollectionService();
+export const groupsService = new GroupsService(serverApi);