aboutsummaryrefslogtreecommitdiff
path: root/src/routes/context.zig
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2025-11-17 10:05:44 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2025-11-17 10:05:44 +0100
commit9c979a6fefdfc6709b3576014520d219e02c3649 (patch)
tree1f74a2edbaac651c983cff100bca250a329339d3 /src/routes/context.zig
parente95cf5c7b6a08eb560763d5167fbddc1c2117bcc (diff)
self import lib
Diffstat (limited to 'src/routes/context.zig')
-rw-r--r--src/routes/context.zig16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/routes/context.zig b/src/routes/context.zig
deleted file mode 100644
index 7c0ca4e..0000000
--- a/src/routes/context.zig
+++ /dev/null
@@ -1,16 +0,0 @@
-const std = @import("std");
-const Storage = @import("../storage/root.zig");
-
-const Self = @This();
-
-allocator: std.mem.Allocator,
-request: *std.http.Server.Request,
-storage: *Storage,
-fingerprint: []const u8,
-user: ?[]const u8 = null,
-response: struct {
- headers: struct {
- content_type: []const u8 = "application/json",
- fingerprint: ?[]const u8 = null,
- } = .{},
-} = .{},