mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-04-17 21:12:39 +00:00
14 lines
434 B
Zig
14 lines
434 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");
|
|
}
|