mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-25 13:16:11 +03:00
13 lines
325 B
Zig
13 lines
325 B
Zig
//! Application runtime that uses GTK4.
|
|
|
|
pub const App = @import("gtk/App.zig");
|
|
pub const Surface = @import("gtk/Surface.zig");
|
|
pub const resourcesDir = @import("gtk/flatpak.zig").resourcesDir;
|
|
|
|
test {
|
|
@import("std").testing.refAllDecls(@This());
|
|
|
|
_ = @import("gtk/inspector.zig");
|
|
_ = @import("gtk/key.zig");
|
|
}
|