import sys
import os

# 動態添加相對路徑到 sys.path
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '../../conf')))

# 引入 conf.py
import conf

# 印出 conf.py 中的 apiKeyOKX6 和 secretOKX6
print(f"API Key: {conf.apiKeyOKX6}")
print(f"Secret Key: {conf.secretOKX6}")
