Merge branch 'master' into 14452-my-account
[arvados-workbench2.git] / src / services / keep-service / keep-service.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.\r
2 //\r
3 // SPDX-License-Identifier: AGPL-3.0\r
4 \r
5 import { CommonResourceService } from "~/services/common-service/common-resource-service";\r
6 import { AxiosInstance } from "axios";\r
7 import { KeepServiceResource } from "~/models/keep-services";\r
8 import { ApiActions } from "~/services/api/api-actions";\r
9 \r
10 export class KeepService extends CommonResourceService<KeepServiceResource> {\r
11     constructor(serverApi: AxiosInstance, actions: ApiActions) {\r
12         super(serverApi, "keep_services", actions);\r
13     }\r
14 }