// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import { CommonResourceService } from "~/services/common-service/common-resource-service"; import { AxiosInstance } from "axios"; import { KeepResource } from "~/models/keep"; import { ProgressFn } from "~/services/api/api-progress"; export class KeepService extends CommonResourceService { constructor(serverApi: AxiosInstance, progressFn: ProgressFn) { super(serverApi, "keep_services", progressFn); } }