diff --git a/cli/payment_cli.py b/cli/payment_cli.py index 9e54d83..c2892e3 100644 --- a/cli/payment_cli.py +++ b/cli/payment_cli.py @@ -9,8 +9,13 @@ Modes: batch, payintent, payplan, refund """ import sys +import os import logging import argparse + +# Add parent directory to Python path to allow imports +sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))) + from config import Config from app import create_app from orchestration import PaymentOrchestrator