const std = @import("std"); const Context = @import("../../context.zig"); pub const access = .everyone; const Result = struct { is_valid: bool }; pub fn get(ctx: *Context) !Result { return .{ .is_valid = ctx.storage.sessions.get(ctx.storage, ctx.fingerprint) != null }; }