X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6e4ce0e45818dac7d6abc6456e85d49798d16458..09c61f87d52388ebfe97f478d536f4f194755401:/src/services/services.ts diff --git a/src/services/services.ts b/src/services/services.ts index 2a903b4cea..47a24b344a 100644 --- a/src/services/services.ts +++ b/src/services/services.ts @@ -3,5 +3,9 @@ // 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"; export const authService = new AuthService(); +export const projectService = new ProjectService(); +export const collectionService = new CollectionService();