api client実装WIP

This commit is contained in:
rca 2024-07-17 07:12:14 +09:00
parent 1a2d8690ae
commit 6724d9b37c

27
src/api.ts Normal file
View File

@ -0,0 +1,27 @@
import axios, { AxiosInstance, AxiosRequestConfig } from 'axios';
// Const
const BASE_URL = 'https://kidshift-beta.nem.one';
const TIMEOUT = 5000;
class ApiClient {
private client: AxiosInstance;
constructor() {
this.client = axios.create({
baseURL: BASE_URL,
timeout: TIMEOUT,
});
}
private getHeaders(includeToken: boolean): Record<string, string> {
const headers: Record<string, string> = {
'Content-Type': 'application/json',
};
if (includeToken) {
const token = 'placeholder_token';
headers['Authorization'] = `Bearer ${token}`;
}
return headers;
}
}