mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
6 lines
174 B
TypeScript
6 lines
174 B
TypeScript
|
import { PostWithOptionalResponse } from "./Client";
|
||
|
import { LogoutPath } from "./Api";
|
||
|
|
||
|
export async function signOut() {
|
||
|
return PostWithOptionalResponse(LogoutPath);
|
||
|
}
|