X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/762c232937e6825839ada7d682542601aaffbd90..e6d69724ebd2256128e983d4a95bd1d46dd71592:/src/services/services.ts diff --git a/src/services/services.ts b/src/services/services.ts index ea72001a..51d2b760 100644 --- a/src/services/services.ts +++ b/src/services/services.ts @@ -3,7 +3,10 @@ // SPDX-License-Identifier: AGPL-3.0 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);