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:
parent
65bf1915af
commit
8a02874b51
10 changed files with 2 additions and 232 deletions
22
BeefTools/LogViewer/src/Program.bf
Normal file
22
BeefTools/LogViewer/src/Program.bf
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue