Files
tello_drone/Tello Drone/Program.cs
2019-09-04 18:36:26 -06:00

20 lines
608 B
C#

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 droneConstants = new DroneConstants();
droneConstants.DronePortNumber = 1;
droneConstants.DroneIPAddress = "d";
var consoleClient = new ConsoleClient(missions, consoleLogger);
consoleClient.Run();
}
}
}