1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-16 15:24:10 +02:00
Beef/BeefTools/LogViewer/src/Program.bf

23 lines
322 B
Beef
Raw Normal View History

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