flow/src/watcher/Debouncer.zig

8 lines
164 B
Zig

const std = @import("std");
const Debouncer = @This();
/// Thread-safe. To be called when a new event comes in
pub fn newEvent(d: *Debouncer) void {
_ = d;
}