47a24b344aaa7d43c0f257d3c47aabd526995368
[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 ProjectService from "./project-service/project-service";
7 import CollectionService from "./collection-service/collection-service";
8
9 export const authService = new AuthService();
10 export const projectService = new ProjectService();
11 export const collectionService = new CollectionService();