const std = @import("std"); const Storage = @import("../storage/root.zig"); const Self = @This(); allocator: std.mem.Allocator, request: *std.http.Server.Request, storage: *Storage, user: ?[]const u8 = null, response: struct { headers: struct { content_type: []const u8 = "application/json", } = .{}, } = .{},