I have strcture of my program like this :
I want to import some functions in the examples/borrow.py file from src/v1/lend/costants/testnetCostants.py file and from src/v1/lend/borrow.py file how can I do this in a proper way ?
I try this structure but it didn't work :
from src.v1.lend.borrow import prepareAddEscrowTransactions, prepareBorrowTransactions, prepareRepayTransaction
from src.v1.lend.costants.testnetCostants import TestnetOracle, TestnetReserveAddress, TestnetTokenPairs
from config import algodClient, sender
I receive this error "ModuleNotFoundError: No module named 'src'"
thanks all for your help