mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 17:11:17 +00:00
Add ApiClient class, auth middleware placeholder, feed query, and wrap the app in QueryClientProvider. Co-authored-by: Ona <no-reply@ona.com>
7 lines
172 B
TypeScript
7 lines
172 B
TypeScript
import { ApiRequestMiddleware } from "./client"
|
|
|
|
export const authMiddleware: ApiRequestMiddleware = (_url, init) => {
|
|
// TODO: placeholder auth middleware
|
|
return init
|
|
}
|