1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import Axios from 'axios';
6 import { Vocabulary } from '~/models/vocabulary';
8 export class VocabularyService {
15 .get<Vocabulary>(this.url)
16 .then(response => response.data);