[#3] Split the tavern project into a workspace.
**tavern** - The blogging system library. **loremaster** - Creates the database from a blogging repository. **bard** - Dioxus components to display the blog.
This commit is contained in:
18
loremaster/src/main.rs
Normal file
18
loremaster/src/main.rs
Normal file
@ -0,0 +1,18 @@
|
||||
//! 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();
|
||||
}
|
||||
Reference in New Issue
Block a user