Merge branch 'master' into 13765-information-inside-details-panel
[arvados-workbench2.git] / src / services / services.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import AuthService from "./auth-service/auth-service";
6 import CollectionService from "./collection-service/collection-service";
7 import GroupsService from "./groups-service/groups-service";
8 import { serverApi } from "../common/api/server-api";
9 import ProjectService from "./project-service/project-service";
10
11 export const authService = new AuthService();
12 export const collectionService = new CollectionService();
13 export const groupsService = new GroupsService(serverApi);
14 export const projectService = new ProjectService(serverApi);