mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 09:01:19 +00:00
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
|
||
|
|
}
|