Initial commit

This commit is contained in:
2026-07-03 16:31:37 +07:00
commit 899c7c637d
1939 changed files with 641750 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using RobotNet10.FleetManager.Script;
namespace RobotNet10.FleetManager.Services.Script;
public class ScriptLayoutManager : ILayoutManager
{
public Task<RobotNet.VDA5050.InstantAction.Action> GetAction(string layout, string version, string level, string name, string robotId)
{
throw new NotImplementedException();
}
public Task<INode> GetNode(string layout, string version, string level, string name)
{
throw new NotImplementedException();
}
public Task<IStation> GetStation(string layout, string version, string level, string name)
{
throw new NotImplementedException();
}
}