selene-core 0.8.1

selene-core is the backend for Selene, a local-first music player
Documentation
1
2
3
4
5
6
7
8
9
use std::path::PathBuf;

use crate::library::track::Track;

impl Track {
    pub(crate) fn set_source_file(&mut self, path: PathBuf) {
        self.container.set_path(path);
    }
}