fn serveLibFile( ws: *WebServer, request: *http.Server.Request, sub_path: []const u8, content_type: []const u8, ) !void
fn serveLibFile( ws: *WebServer, request: *http.Server.Request, sub_path: []const u8, content_type: []const u8, ) !void { const graph = ws.graph; return serveFile(ws, request, .{ .root_dir = graph.zig_lib_directory, .sub_path = sub_path, }, content_type); }