blob: 4b193e066d0202ff3805615a26596572f6b13fe0 (
plain)
1
2
3
4
5
6
7
8
9
|
const memora = @import("memora");
const Context = memora.Context;
pub const access = .users;
pub fn get(ctx: *Context) !void {
ctx.storage.sessions.remove(ctx.storage, ctx.fingerprint);
ctx.response.headers.fingerprint = "";
}
|