summaryrefslogtreecommitdiff
path: root/src/main.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.zig')
-rw-r--r--src/main.zig4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.zig b/src/main.zig
index ba479e9..81317f1 100644
--- a/src/main.zig
+++ b/src/main.zig
@@ -9,7 +9,9 @@ pub fn main() !void{
const args = try std.process.argsAlloc(allocator);
defer std.process.argsFree(allocator, args);
- var daily = try weatherFetcher.getDailyData(allocator);
+ var daily = try weatherFetcher.getDailyData(allocator, weatherFetcher.Location{
+ .lat=52.52, .lon=13.41,
+ });
defer daily.deinit();
const stdout = std.io.getStdOut().writer();