bpf/kernel_api/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2
3// error if two skels in the same module
4pub mod label_file {
5    include!(concat!(env!("OUT_DIR"), "/label_file.skel.rs"));
6}
7pub mod label_task {
8    include!(concat!(env!("OUT_DIR"), "/label_task.skel.rs"));
9}
10pub mod label_maps {
11    include!(concat!(env!("OUT_DIR"), "/label_maps.skel.rs"));
12}