Merge branch 'master'
[arvados-workbench2.git] / src / services / link-service / link-service.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { CommonResourceService } from "../../common/api/common-resource-service";
6 import { LinkResource } from "../../models/link";
7 import { AxiosInstance } from "axios";
8
9 export class LinkService extends CommonResourceService<LinkResource> {
10     constructor(serverApi: AxiosInstance) {
11         super(serverApi, "links");
12     }
13 }