this repo has no description
at main 8 lines 215 B view raw
1use std::path::PathBuf; 2 3use crate::{parser::ParserError, record::Play}; 4 5pub trait LogParser { 6 /// Parse the given log file into a list of tracks 7 fn parse(log: PathBuf) -> Result<Vec<Play>, ParserError>; 8}