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 {
13 async getVocabulary() {
14 const response = await Axios
15 .get<Vocabulary>(this.url);