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(
SubCommand::with_name("fetch") 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(
SubCommand::with_name("storage") SubCommand::with_name("storage")

4
src/main.rs

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

4
src/storage/mod.rs

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

Loading…
Cancel
Save