mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-04-06 07:38:21 +00:00
15 lines
466 B
Zig
15 lines
466 B
Zig
// The required comptime API for any apprt.
|
|
pub const App = @import("gtk/App.zig");
|
|
pub const Surface = @import("gtk/Surface.zig");
|
|
pub const resourcesDir = @import("gtk/flatpak.zig").resourcesDir;
|
|
|
|
// The exported API, custom for the apprt.
|
|
pub const class = @import("gtk/class.zig");
|
|
pub const WeakRef = @import("gtk/weak_ref.zig").WeakRef;
|
|
|
|
test {
|
|
@import("std").testing.refAllDecls(@This());
|
|
_ = @import("gtk/ext.zig");
|
|
_ = @import("gtk/key.zig");
|
|
}
|