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