mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
8 lines
229 B
TypeScript
8 lines
229 B
TypeScript
import { HTTP_URL } from "./backend";
|
|
import { createApi, fetchBaseQuery } from "@reduxjs/toolkit/query/react";
|
|
|
|
export const baseApi = createApi({
|
|
baseQuery: fetchBaseQuery({ baseUrl: HTTP_URL }),
|
|
endpoints: () => ({}),
|
|
});
|