尝试分离NodeModel与依赖包

This commit is contained in:
fengjiayi
2024-08-06 16:09:46 +08:00
parent f15baf0d9b
commit 4183866b42
56 changed files with 3623 additions and 241 deletions

View File

@@ -0,0 +1,14 @@
using Serein.NodeFlow;
namespace Serein.NodeFlow.Model
{
public class SingleFlipflopNode : NodeBase
{
public override object Execute(DynamicContext context)
{
throw new NotImplementedException("无法以非await/async的形式调用触发器");
}
}
}