├── .gitignore ├── LICENSE ├── README.md ├── examples ├── product_order.py ├── product_order_flow └── product_order_flow.png ├── product_order_flow ├── product_order_flow.png ├── pyproject.toml └── src └── goalchain ├── __init__.py └── goalchain.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlumal/GoalChain/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlumal/GoalChain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlumal/GoalChain/HEAD/README.md -------------------------------------------------------------------------------- /examples/product_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlumal/GoalChain/HEAD/examples/product_order.py -------------------------------------------------------------------------------- /examples/product_order_flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlumal/GoalChain/HEAD/examples/product_order_flow -------------------------------------------------------------------------------- /examples/product_order_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlumal/GoalChain/HEAD/examples/product_order_flow.png -------------------------------------------------------------------------------- /product_order_flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlumal/GoalChain/HEAD/product_order_flow -------------------------------------------------------------------------------- /product_order_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlumal/GoalChain/HEAD/product_order_flow.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlumal/GoalChain/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/goalchain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlumal/GoalChain/HEAD/src/goalchain/__init__.py -------------------------------------------------------------------------------- /src/goalchain/goalchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlumal/GoalChain/HEAD/src/goalchain/goalchain.py --------------------------------------------------------------------------------