diff options
Diffstat (limited to 'src/main.zig')
| -rw-r--r-- | src/main.zig | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main.zig b/src/main.zig index 11aae8f..197a224 100644 --- a/src/main.zig +++ b/src/main.zig | |||
| @@ -12,7 +12,6 @@ pub const update = SubCommand(@import("update.zig")); | |||
| 12 | pub const version = SubCommand(Version); | 12 | pub const version = SubCommand(Version); |
| 13 | 13 | ||
| 14 | const std = @import("std"); | 14 | const std = @import("std"); |
| 15 | const zelda = @import("zelda"); | ||
| 16 | const zup_config = @import("zup-config"); | 15 | const zup_config = @import("zup-config"); |
| 17 | 16 | ||
| 18 | const ArgIterator = std.process.ArgIterator; | 17 | const ArgIterator = std.process.ArgIterator; |
| @@ -25,9 +24,6 @@ pub fn main() !void { | |||
| 25 | const allocator = gpa.allocator(); | 24 | const allocator = gpa.allocator(); |
| 26 | defer _ = gpa.deinit(); | 25 | defer _ = gpa.deinit(); |
| 27 | 26 | ||
| 28 | // TODO: Make an issue in zelda mentioning this | ||
| 29 | defer zelda.client.global_connection_cache.deinit(); | ||
| 30 | |||
| 31 | var config = try Config.init(allocator); | 27 | var config = try Config.init(allocator); |
| 32 | defer config.deinit(); | 28 | defer config.deinit(); |
| 33 | 29 | ||