mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-25 13:16:11 +03:00
11 lines
243 B
Zig
11 lines
243 B
Zig
const std = @import("std");
|
|
const assert = std.debug.assert;
|
|
const c = @import("c.zig").c;
|
|
|
|
/// sentry_envelope_t
|
|
pub const Envelope = opaque {
|
|
pub fn deinit(self: *Envelope) void {
|
|
c.sentry_envelope_free(@ptrCast(self));
|
|
}
|
|
};
|