Remove plausible, leave a dummy provider for now

Add batching, add install optional id (persisted) and execution id (per run)
This commit is contained in:
Karl Seguin
2025-03-03 15:27:39 +08:00
parent 56ddcc8e29
commit 53f6e66c23
4 changed files with 119 additions and 39 deletions

View File

@@ -66,7 +66,7 @@ pub fn Incrementing(comptime T: type, comptime prefix: []const u8) type {
};
}
fn uuidv4(hex: []u8) void {
pub fn uuidv4(hex: []u8) void {
std.debug.assert(hex.len == 36);
var bin: [16]u8 = undefined;