Need to work on Getting the Missions running, There is currently an issue with the UDP Client sending to a bad IP
This commit is contained in:
17
Tello Drone/Program.cs
Normal file
17
Tello Drone/Program.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
|
||||
namespace Tello_Drone
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
var bootstrapper = BootStrapper.BootstrapSystem(new CoreModule());
|
||||
var missions = bootstrapper.Resolve<IMissions>();
|
||||
var consoleLogger = bootstrapper.Resolve<IConsoleLogger>();
|
||||
var consoleClient = new ConsoleClient(missions, consoleLogger);
|
||||
|
||||
consoleClient.Run();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user