1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-17 15:46:05 +02:00

Moving LogViewer into BeefTools

This commit is contained in:
Brian Fiete 2019-09-04 11:44:04 -07:00
parent 65bf1915af
commit 8a02874b51
10 changed files with 2 additions and 232 deletions

View file

@ -0,0 +1,22 @@
using System;
namespace LogViewer
{
class Program
{
static int32 Main(String[] args)
{
/*String commandLine = scope String();
commandLine.JoinInto(" ", args);*/
LVApp app = new .();
app.ParseCommandLine(args);
app.Init();
app.Run();
app.Shutdown();
delete app;
return 0;
}
}
}