refactor: get zine watcher to build in flow

This commit is contained in:
CJ van den Berg 2025-11-30 15:03:14 +01:00
parent 6950c8559f
commit 2efe19d743
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
7 changed files with 90 additions and 30 deletions

View file

@ -0,0 +1,8 @@
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;
}