mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-10-29 07:03:29 +00:00
10 lines
148 B
Zig
10 lines
148 B
Zig
const std = @import("std");
|
|
|
|
const tests = @import("run_tests.zig");
|
|
|
|
pub const Types = tests.Types;
|
|
|
|
pub fn main() !void {
|
|
try tests.main();
|
|
}
|