19 lines
407 B
Rust
19 lines
407 B
Rust
use log::info;
|
|
use winit::event_loop::EventLoop;
|
|
|
|
mod app;
|
|
|
|
fn main() {
|
|
// Initialize logger
|
|
env_logger::init();
|
|
|
|
// Log platform information
|
|
info!("Starting simplicitty terminal emulator");
|
|
|
|
// Create event loop with explicit backend preference
|
|
let event_loop = EventLoop::new().unwrap();
|
|
|
|
// Run the application
|
|
event_loop.run_app(&mut app::Application::new()).unwrap();
|
|
}
|