mirror of
https://github.com/ziex-dev/ziex.git
synced 2026-07-21 02:59:36 -06:00
commit 1c89576ef4932f511a040aeca723745487d8a73c
Author: Nurul Huda (Apon) <me@nurulhudaapon.com>
Date: Sun Mar 22 16:58:19 2026 +0600
sync
commit 0ee4cb79e3bcbe9990411f74b8b90402d1b57ffd
Author: Nurul Huda (Apon) <me@nurulhudaapon.com>
Date: Sun Mar 22 16:06:20 2026 +0600
sync
commit 06630e1565d920ee91432174a91903086a315950
Author: Nurul Huda (Apon) <me@nurulhudaapon.com>
Date: Sun Mar 22 15:41:39 2026 +0600
sync
commit f4c17b80756c8cfe1183ec2b3057893afbd78889
Author: Nurul Huda (Apon) <me@nurulhudaapon.com>
Date: Sun Mar 22 15:07:17 2026 +0600
sync
commit bb534f820d8e00f4e476a1c6b0fae545f361f8c4
Author: Nurul Huda (Apon) <me@nurulhudaapon.com>
Date: Sun Mar 22 14:52:08 2026 +0600
sync
commit 424b1219bf469688bd6d7e56ebd0b4428bef6255
Author: Nurul Huda (Apon) <me@nurulhudaapon.com>
Date: Sun Mar 22 14:15:29 2026 +0600
sync
commit 7c0a3705fc6127aadb5db79dfb79ea38c4d2a6b8
Author: Nurul Huda (Apon) <me@nurulhudaapon.com>
Date: Sun Mar 22 13:53:16 2026 +0600
sync
commit 1ef5afc45465eab4d4400e3b2f4521a766c42a5a
Author: Nurul Huda (Apon) <me@nurulhudaapon.com>
Date: Sun Mar 22 13:34:32 2026 +0600
sync
21 lines
513 B
Zig
21 lines
513 B
Zig
const std = @import("std");
|
|
|
|
test {
|
|
_ = @import("core/ast.zig");
|
|
_ = @import("cli/fmt.zig");
|
|
_ = @import("cli/cli.zig");
|
|
_ = @import("core/net.zig");
|
|
_ = @import("core/zxon.zig");
|
|
_ = @import("core/html.zig");
|
|
_ = @import("core/routing.zig");
|
|
_ = @import("core/vdom.zig");
|
|
_ = @import("core/dx.zig");
|
|
}
|
|
|
|
pub const std_options = std.Options{
|
|
.log_level = .info,
|
|
.log_scope_levels = &[_]std.log.ScopeLevel{
|
|
.{ .scope = .zx_transpiler, .level = .info },
|
|
},
|
|
};
|