mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-01-01 11:12:16 +00:00
7 lines
177 B
Zig
7 lines
177 B
Zig
/// The target for ABI generation. The detection of this is left to the
|
|
/// caller since there are multiple ways to do that.
|
|
pub const Target = union(enum) {
|
|
c,
|
|
zig,
|
|
};
|