1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-26 11:38:02 +02:00
Beef/IDE/src/CmdTarget.bf
2019-08-23 11:56:54 -07:00

20 lines
300 B
Beef

using System;
using System.Collections.Generic;
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;
}
}
}