1 2 3 4 5 6 7 8 9 10 11 12 13
const std = @import("std"); const Context = @import("../../context.zig"); pub const access = .everyone; const Result = struct { is_first: bool, }; pub fn post(ctx: *Context) anyerror!Result { _ = ctx; return .{ .is_first = false }; }