//! Converts a blog repository into an SQLite database using the Tavern blog system. mod info; /// Print the version. fn print_version() { println!("{} v{}", info::get_name(), info::get_version()); } fn main() { print_version(); }