cosmic-player/src/main.rs
2024-10-05 10:05:18 -06:00

18 lines
334 B
Rust

// Copyright 2023 System76 <info@system76.com>
// SPDX-License-Identifier: GPL-3.0-only
mod config;
mod key_bind;
mod localize;
#[cfg(feature = "ffmpeg")]
#[path = "ffmpeg/mod.rs"]
mod app;
#[cfg(feature = "gstreamer")]
#[path = "gstreamer/mod.rs"]
mod app;
fn main() -> Result<(), Box<dyn std::error::Error>> {
app::main()
}