almost there

This commit is contained in:
2019-09-04 18:36:26 -06:00
parent 8c9bebb783
commit e66bd40e06
9 changed files with 65 additions and 22 deletions

View File

@@ -9,8 +9,10 @@ namespace Tello_Drone
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();
}
}