Files
tello_drone/Tello Drone/Program.cs
2019-09-11 15:53:52 -06:00

16 lines
546 B
C#

namespace Tello_Drone
{
class Program
{
static void Main(string[] args)
{
var bootstrapper = BootStrapper.BootstrapSystem(new CoreModule());
var missionList = bootstrapper.Resolve<IMissionList>();
var missionCommander = bootstrapper.Resolve<IMissionCommander>();
var consoleLogger = bootstrapper.Resolve<IConsoleLogger>();
var consoleClient = new ConsoleClient(missionList, consoleLogger, missionCommander);
consoleClient.Run();
}
}
}