mirror of
https://github.com/jetzig-framework/jetzig.git
synced 2025-05-14 22:16:08 +00:00

Not yet complete but provides some functionality with internal templates that Websockets/Channels needs so merging in to main and can pick up later.
14 lines
257 B
Zig
14 lines
257 B
Zig
const std = @import("std");
|
|
|
|
const Self = @This();
|
|
|
|
const jetzig = @import("../../jetzig.zig");
|
|
|
|
data: *jetzig.data.Data,
|
|
status_code: jetzig.http.status_codes.StatusCode = .ok,
|
|
content: ?[]const u8 = null,
|
|
|
|
pub fn deinit(self: Self) void {
|
|
_ = self;
|
|
}
|