const std = @import("std"); const Context = @import("../../context.zig"); pub const needs_auth = true; pub const method = .POST; const Result = struct { is_first: bool, }; pub fn handler(ctx: *Context) anyerror!Result { _ = ctx; return .{ .is_first = false }; }