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