mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-17 09:16:11 +03:00
23 lines
755 B
Zig
23 lines
755 B
Zig
//! The crash package contains all the logic around crash handling,
|
|
//! whether that's setting up the system to catch crashes (Sentry client),
|
|
//! introspecting crash reports, writing crash reports to disk, etc.
|
|
|
|
const dir = @import("dir.zig");
|
|
const sentry_envelope = @import("sentry_envelope.zig");
|
|
|
|
pub const minidump = @import("minidump.zig");
|
|
pub const sentry = @import("sentry.zig");
|
|
pub const Envelope = sentry_envelope.Envelope;
|
|
pub const defaultDir = dir.defaultDir;
|
|
pub const Dir = dir.Dir;
|
|
pub const ReportIterator = dir.ReportIterator;
|
|
pub const Report = dir.Report;
|
|
|
|
// The main init/deinit functions for global state.
|
|
pub const init = sentry.init;
|
|
pub const deinit = sentry.deinit;
|
|
|
|
test {
|
|
@import("std").testing.refAllDecls(@This());
|
|
}
|