From 034172c7b3bd95a41e1bd11c6d42f459f20bb18c Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Sun, 27 Aug 2023 23:18:55 -0700 Subject: [PATCH] progress indicator on main --- src/main.zig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.zig b/src/main.zig index 5c0055c..f962127 100644 --- a/src/main.zig +++ b/src/main.zig @@ -137,6 +137,8 @@ pub fn main() anyerror!void { std.log.info("request id: {any}", .{call.response_metadata.request_id}); std.log.info("account has clusters: {}", .{call.response.cluster_arns.?.len > 0}); }, + // ^^ under test. vv stil in progress + // This has an issue with json.zig .rest_json_1_query_with_input => { const call = try client.call(services.lambda.list_functions.Request{ .max_items = 1, @@ -145,6 +147,7 @@ pub fn main() anyerror!void { std.log.info("request id: {any}", .{call.response_metadata.request_id}); std.log.info("account has functions: {}", .{call.response.functions.?.len > 0}); }, + // This is skipped .rest_json_1_query_no_input => { const call = try client.call(services.lambda.list_functions.Request{}, options); defer call.deinit();