feat(core): 实现架构作用域容器核心

This commit is contained in:
JSD\13999
2026-06-18 10:25:32 +08:00
parent 6e45152250
commit 76016d35c1
41 changed files with 1455 additions and 326 deletions

View File

@@ -0,0 +1,7 @@
namespace FlowScope
{
public interface IFeature
{
void Install(IArchitectureScope scope);
}
}