Move "RestClient" in sub folder

This commit is contained in:
schroda
2023-08-15 13:54:55 +02:00
parent bffc1669e2
commit a0b686497f
2 changed files with 2 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ import {
SourceSearchResult,
UpdateCheck,
} from '@/typings.ts';
import { HttpMethod as DefaultHttpMethod, IRestClient, RestClient } from '@/lib/RestClient.ts';
import { HttpMethod as DefaultHttpMethod, IRestClient, RestClient } from '@/lib/requests/client/RestClient.ts';
import storage from '@/util/localStorage.tsx';
enum SWRHttpMethod {

View File

@@ -7,7 +7,7 @@
*/
import axios, { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios';
import storage from '@/util/localStorage';
import storage from '@/util/localStorage.tsx';
export enum HttpMethod {
GET = 'get',