Create Link model and service
[arvados.git] / src / services / services.ts
index 2a903b4ceafaede952ede886194eafe152f0b9b5..fbd2f6eb11db75d447438a42ec46934a379c09d9 100644 (file)
@@ -3,5 +3,12 @@
 // SPDX-License-Identifier: AGPL-3.0
 
 import AuthService from "./auth-service/auth-service";
+import GroupsService from "./groups-service/groups-service";
+import { serverApi } from "../common/api/server-api";
+import ProjectService from "./project-service/project-service";
+import LinkService from "./link-service/link-service";
 
-export const authService = new AuthService();
+export const authService = new AuthService(serverApi);
+export const groupsService = new GroupsService(serverApi);
+export const projectService = new ProjectService(serverApi);
+export const linkService = new LinkService(serverApi);