mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-25 13:16:11 +03:00
15 lines
447 B
Zig
15 lines
447 B
Zig
const internal_os = @import("../os/main.zig");
|
|
|
|
// The required comptime API for any apprt.
|
|
pub const App = @import("gtk-ng/App.zig");
|
|
pub const Surface = @import("gtk-ng/Surface.zig");
|
|
pub const resourcesDir = internal_os.resourcesDir;
|
|
|
|
// The exported API, custom for the apprt.
|
|
pub const class = @import("gtk-ng/class.zig");
|
|
pub const WeakRef = @import("gtk-ng/weak_ref.zig").WeakRef;
|
|
|
|
test {
|
|
@import("std").testing.refAllDecls(@This());
|
|
}
|