Skip to main content

uni_store/runtime/
working_graph.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright 2024-2026 Dragonscale Team
3
4use uni_common::graph::simple_graph::SimpleGraph;
5
6// WorkingGraph is now just a wrapper around SimpleGraph
7// We keep the alias to minimize churn
8pub type WorkingGraph = SimpleGraph;