blob: c1d35fc0a0f791aeaabffc32875625c913ef2c06 (
plain)
1
2
3
4
5
6
|
const std = @import("std");
const Value = @import("./value.zig").Value;
pub fn parse(allocator: std.mem.Allocator, input: []const u8) !std.json.Parsed(Value) {
return try std.json.parseFromSlice(Value, allocator, input, .{});
}
|