mirror of
https://github.com/m1ngsama/TUT.git
synced 2025-12-26 12:04:11 +00:00
24 lines
451 B
C++
24 lines
451 B
C++
#include "tui_view.h"
|
|
#include "calendar.h"
|
|
|
|
int main() {
|
|
display_splash_screen(); // Display splash screen at startup
|
|
|
|
while (true) {
|
|
int choice = run_portal_tui();
|
|
|
|
switch (choice) {
|
|
case 0: { // Calendar
|
|
Calendar calendar;
|
|
calendar.run();
|
|
break;
|
|
}
|
|
case 1: { // Exit
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|