mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-28 20:59:23 +00:00
11 lines
175 B
TypeScript
11 lines
175 B
TypeScript
import type { Request } from '@sveltejs/kit';
|
|
export async function del(request: Request) {
|
|
request.locals.session.destroy = true;
|
|
|
|
return {
|
|
body: {
|
|
ok: true
|
|
}
|
|
};
|
|
}
|