1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-15 23:04:09 +02:00
Beef/BeefTools/LogViewer/src/Program.bf
2019-09-04 11:44:04 -07:00

22 lines
322 B
Beef

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;
}
}
}