1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//!  SPDX-License-Identifier: MIT
//!
//! Copyright (c) 2023, eunomia-bpf
//! All rights reserved.
//!

/// A container to hold self-reference stuff
pub mod btf_container;
/// Another container to hold self-reference stuff
pub mod elf_container;
/// The event exporter
pub mod export_event;
/// Some helper functions
pub mod helper;
/// Skeleton data types
pub mod meta;
/// The skeleton itself
pub mod skeleton;

/// Re-export clap
pub use clap;
/// Re-export serde
pub use serde;
/// Re-export serde_json
pub use serde_json;
#[cfg(test)]
mod tests;