cosmic-player/src/main.rs

19 lines
334 B
Rust
Raw Normal View History

2024-01-24 14:31:39 -07:00
// 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;
2024-01-24 21:06:07 -07:00
#[cfg(feature = "gstreamer")]
#[path = "gstreamer/mod.rs"]
mod app;
2024-01-24 14:31:39 -07:00
fn main() -> Result<(), Box<dyn std::error::Error>> {
app::main()
2024-01-23 21:55:34 -07:00
}