first commit
Some checks are pending
spot-quality / ci-check (push) Waiting to run
spot-quality / shellcheck (push) Waiting to run

This commit is contained in:
Théo Barnouin 2024-11-13 16:41:51 +01:00
commit 15cf412840
255 changed files with 47845 additions and 0 deletions

View file

@ -0,0 +1,11 @@
mod component;
mod playback_controls;
mod playback_info;
mod playback_widget;
pub use component::*;
use glib::prelude::*;
pub fn expose_widgets() {
playback_widget::PlaybackWidget::static_type();
}