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