1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00
Beef/IDE/src/CmdTarget.bf

20 lines
292 B
Beef

using System;
using System.Collections;
namespace IDE
{
class CmdTarget
{
List<String> mQueue = new .() ~ DeleteContainerAndItems!(_);
public void Queue(StringView cmd)
{
mQueue.Add(new String(cmd));
}
public Result<void> Execute(StringView cmd)
{
return .Ok;
}
}
}