1 2 3 4
use crate::domain::track::Playlist; pub trait SourePort { fn get_playlists<E>(&self) -> Result<Vec<Playlist>, E>; }