mirror of
https://github.com/varun-r-mallya/Python-BPF.git
synced 2025-12-31 21:06:25 +00:00
9 lines
184 B
Python
9 lines
184 B
Python
import ast
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
def process_vmlinux_class(node, module, vmlinux_types):
|
|
# Process ClassDef nodes that use vmlinux imports
|
|
pass
|