fix struct imports

This commit is contained in:
Pragyansh Chaturvedi
2025-09-30 00:47:28 +05:30
parent 4557b094e1
commit 32c22c3148
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ from llvmlite import ir
from .license_pass import license_processing
from .functions_pass import func_proc
from .maps_pass import maps_proc
from .structs_pass import structs_proc
from .structs.structs_pass import structs_proc
from .globals_pass import globals_processing
import os
import subprocess

View File

@ -1,7 +1,7 @@
import ast
import logging
from llvmlite import ir
from .type_deducer import ctypes_to_ir
from pythonbpf.type_deducer import ctypes_to_ir
from .struct_type import StructType
logger = logging.getLogger(__name__)