1
2
3
4
5
6
7
8
extern crate serde;
extern crate scraper;

mod parser;
mod client;

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