mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-15 23:04:09 +02:00
22 lines
322 B
Beef
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;
|
|
}
|
|
}
|
|
}
|