From dddcc7bc9c40ab420dbfbb68911472cb18c1cd22 Mon Sep 17 00:00:00 2001 From: Yongkie Wiyogo <4080600+ywiyogo@users.noreply.github.com> Date: Wed, 21 May 2025 16:43:59 +0800 Subject: [PATCH] fix build error for example/app/basic --- examples/app/basic.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/app/basic.zig b/examples/app/basic.zig index eef9e5d..de20c4f 100644 --- a/examples/app/basic.zig +++ b/examples/app/basic.zig @@ -88,6 +88,7 @@ const StopEndpoint = struct { pub fn delete(_: *StopEndpoint, _: Allocator, _: *MyContext, _: zap.Request) !void {} pub fn patch(_: *StopEndpoint, _: Allocator, _: *MyContext, _: zap.Request) !void {} pub fn options(_: *StopEndpoint, _: Allocator, _: *MyContext, _: zap.Request) !void {} + pub fn head(_: *StopEndpoint, _: Allocator, _: *MyContext, _: zap.Request) !void {} }; pub fn main() !void {