mirror of
https://github.com/kennethnym/freya
synced 2026-06-23 01:44:55 +01: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
|
||
|
|
}
|