From 6f9a7301afc958da47e2944962862c0b06c3d472 Mon Sep 17 00:00:00 2001 From: Pragyansh Chaturvedi Date: Wed, 8 Oct 2025 06:45:52 +0530 Subject: [PATCH] Rework dir structure for expr --- pythonbpf/expr/__init__.py | 3 +++ pythonbpf/{ => expr}/expr_pass.py | 0 2 files changed, 3 insertions(+) create mode 100644 pythonbpf/expr/__init__.py rename pythonbpf/{ => expr}/expr_pass.py (100%) diff --git a/pythonbpf/expr/__init__.py b/pythonbpf/expr/__init__.py new file mode 100644 index 0000000..55eae5e --- /dev/null +++ b/pythonbpf/expr/__init__.py @@ -0,0 +1,3 @@ +from .expr_pass import eval_expr, handle_expr, convert_to_bool + +__all__ = ["eval_expr", "handle_expr", "convert_to_bool"] diff --git a/pythonbpf/expr_pass.py b/pythonbpf/expr/expr_pass.py similarity index 100% rename from pythonbpf/expr_pass.py rename to pythonbpf/expr/expr_pass.py