refs #13828 Merge branch 'origin/13828-trash-view'
[arvados-workbench2.git] / src / services / log-service / log-service.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { AxiosInstance } from "axios";
6 import { LogResource } from '~/models/log';
7 import { CommonResourceService } from "~/services/common-service/common-resource-service";
8
9 export class LogService extends CommonResourceService<LogResource> {
10     constructor(serverApi: AxiosInstance) {
11         super(serverApi, "logs");
12     }
13 }