}
res.put("result", "loggedout");
} else if (path.contains("/api/messageofday/")) {
// Returns the message of the day for Acme Airlines
MOTD motd = MOTD.getInstance();
res = motd.getRandomMessageOfTheDay();
} else if (path.contains("/api/fc/all")) {
FlightController fc = FlightController.getInstance();
res = fc.getAllFlightStatus();