Browse Source

Make the code compile again

master
Julio Biason 3 years ago
parent
commit
25c10f3ab2
  1. 6
      src/args/mod.rs
  2. 4
      src/main.rs
  3. 4
      src/storage/mod.rs

6
src/args/mod.rs

@ -53,7 +53,11 @@ pub fn parse() -> Command {
)
.subcommand(
SubCommand::with_name("fetch")
.about("Fetch new favourites from this account only")
.about("Fetch new favourites from this account only")
)
.subcommand(
SubCommand::with_name("sync")
.about("Sync the last seen favourite with the most recent one")
)
.subcommand(
SubCommand::with_name("storage")

4
src/main.rs

@ -23,8 +23,8 @@ use elefren::prelude::*;
mod args;
mod config;
// mod filesystem;
// mod storage;
mod filesystem;
mod storage;
fn main() {
env_logger::init();

4
src/storage/mod.rs

@ -19,6 +19,6 @@
pub mod attachment;
pub mod data;
pub mod helpers;
pub mod joplin;
pub mod org;
// pub mod joplin;
// pub mod org;
pub mod storage;

Loading…
Cancel
Save