// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import { AxiosInstance } from "axios"; import { LogResource } from '~/models/log'; import { CommonResourceService } from "~/services/common-service/common-resource-service"; export class LogService extends CommonResourceService { constructor(serverApi: AxiosInstance) { super(serverApi, "logs"); } }