mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
10 lines
255 B
Zig
10 lines
255 B
Zig
pub usingnamespace @import("init.zig");
|
|
pub usingnamespace @import("errors.zig");
|
|
pub usingnamespace @import("regex.zig");
|
|
pub usingnamespace @import("types.zig");
|
|
pub const c = @import("c.zig");
|
|
|
|
test {
|
|
@import("std").testing.refAllDecls(@This());
|
|
}
|