using System; namespace Tello_Drone { class Program { static void Main(string[] args) { var bootstrapper = BootStrapper.BootstrapSystem(new CoreModule()); var missions = bootstrapper.Resolve(); var consoleLogger = bootstrapper.Resolve(); var droneConstants = new DroneConstants(); droneConstants.DronePortNumber = 1; droneConstants.DroneIPAddress = "d"; var consoleClient = new ConsoleClient(missions, consoleLogger); consoleClient.Run(); } } }