mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-18 05:09:23 +00:00
10 lines
282 B
TypeScript
10 lines
282 B
TypeScript
import { baseQueryWithReauth } from '@/services/base-query-with-reauth'
|
|
import { createApi } from '@reduxjs/toolkit/query/react'
|
|
|
|
export const baseApi = createApi({
|
|
baseQuery: baseQueryWithReauth,
|
|
endpoints: () => ({}),
|
|
reducerPath: 'baseApi',
|
|
tagTypes: ['Decks', 'Me'],
|
|
})
|