import axios from "axios"; import { OasstError } from "./oasst_api_client"; const headers = { "Content-Type": "application/json", }; const api = axios.create({ headers, }); export const get = (url: string) => api.get(url).then((res) => res.data); export const post = (url: string, { arg: data }) => api.post(url, data).then((res) => res.data); api.interceptors.response.use( (response) => response, (error) => { throw new OasstError(error.message ?? error, error.error_code); } ); export default api;