add additition navigate fields

This commit is contained in:
Karl Seguin
2025-03-18 09:56:57 +08:00
parent b75b36dc61
commit c9bc5be42b
3 changed files with 50 additions and 12 deletions

View File

@@ -93,8 +93,13 @@ fn getOrCreateId(app_dir_path_: ?[]const u8) ?[36]u8 {
pub const Event = union(enum) {
run: void,
navigate: void,
navigate: Navigate,
flag: []const u8, // used for testing
const Navigate = struct {
tls: bool,
proxy: bool,
};
};
const NoopProvider = struct {