Skip to content

Commit 5596405

Browse files
committed
start app
1 parent e1d5eb9 commit 5596405

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

flight-deals-start/main.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,12 @@
1-
#This file will need to use the DataManager,FlightSearch, FlightData, NotificationManager classes to achieve the program requirements.
1+
#This file will need to use the DataManager,FlightSearch, FlightData, NotificationManager classes to achieve the program requirements.
2+
3+
from data_manager import DataManager
4+
from flight_data import FlightData
5+
from flight_search import FlightSearch
6+
from notification_manager import NotificationManager
7+
8+
def start_app():
9+
pass
10+
11+
if __name__ == "__main__":
12+
start_app()

0 commit comments

Comments
 (0)