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

21 lines
300 B
Beef
Raw Normal View History

2019-08-23 11:56:54 -07:00
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;
}
}
}