aboutsummaryrefslogtreecommitdiff
path: root/src/routes/context.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/context.zig')
-rw-r--r--src/routes/context.zig14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/routes/context.zig b/src/routes/context.zig
new file mode 100644
index 0000000..bc3e710
--- /dev/null
+++ b/src/routes/context.zig
@@ -0,0 +1,14 @@
+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",
+ } = .{},
+} = .{},