url: first draft

This commit is contained in:
Pierre Tachoire
2024-05-03 16:18:11 +02:00
parent e2cd983851
commit 28a87c2a47
3 changed files with 164 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ const HTML = @import("html/html.zig");
const Events = @import("events/event.zig");
const XHR = @import("xhr/xhr.zig");
const Storage = @import("storage/storage.zig");
const URL = @import("url/url.zig");
pub const HTMLDocument = @import("html/document.zig").HTMLDocument;
@@ -18,4 +19,5 @@ pub const Interfaces = generate.Tuple(.{
HTML.Interfaces,
XHR.Interfaces,
Storage.Interfaces,
URL.Interfaces,
});