ghostty/pkg/sentry/envelope.zig
2024-08-28 21:43:17 -07:00

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));
}
};