Files
oc-api_print/Api/customer_order_example.py
2025-10-21 14:56:55 -05:00

8 lines
230 B
Python

from formats import CustomerOrderPrinter
from tools import load_json
if __name__ == "__main__":
data = load_json('./test/fixtures/customer_order.json')
printer = CustomerOrderPrinter("")
printer.print_order(data, "")