1
 2
 3
 4
 5
 6
 7
 8
 9
10
extern crate serde;
extern crate scraper;
extern crate thiserror;
extern crate anyhow;

mod parser;
mod client;

pub use parser::WorkoutSummary;
pub use client::IfitClient;