Create Link model and service
[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 { Link } from "../../models/link";
7 import { AxiosInstance } from "../../../node_modules/axios";
8
9 export default class LinkService<T extends Link = Link> extends CommonResourceService<T> {
10     constructor(serverApi: AxiosInstance) {
11         super(serverApi, "links");
12     }
13 }