import axios from "axios"; export class ApiClient { readonly url = "http://localhost:5000/api"; async get(path: string) { const request_url = `${ this.url }${ path }`; try { const response = await axios.get(request_url); return response; } catch(error) { console.log(error); } } }