From cdc198e18611e2cc960040d5b3d085d8a6e68c4f Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Tue, 9 Dec 2025 13:03:27 -0800 Subject: [PATCH] more formatting --- src/main.zig | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/main.zig b/src/main.zig index 7515cf4..04987ed 100644 --- a/src/main.zig +++ b/src/main.zig @@ -270,13 +270,21 @@ pub fn main() !void { try stdout.print("🔐 Authenticating...\n", .{}); try stdout.flush(); - const auth = try authenticate(allocator, creds.username, creds.password); + const auth = try authenticate( + allocator, + creds.username, + creds.password, + ); defer allocator.free(auth.id_token); defer allocator.free(auth.user_uuid); try stdout.print("✓ User UUID: {s}\n\n", .{auth.user_uuid}); try stdout.print("📱 Fetching devices...\n", .{}); try stdout.flush(); - const result = try getDevices(allocator, auth.id_token, creds.username); + const result = try getDevices( + allocator, + auth.id_token, + creds.username, + ); defer result.deinit(); if (result.value.object.get("data")) |data| {