fix main function

This commit is contained in:
Michael Zhang 2021-02-14 06:27:48 -06:00
parent e980c597f1
commit a36f541429
Signed by: michael
GPG key ID: BDA47A31A3C8EE6B
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View file

@ -765,7 +765,7 @@ dependencies = [
[[package]]
name = "panorama"
version = "0.1.0"
version = "0.0.1"
dependencies = [
"anyhow",
"async-trait",

View file

@ -1,6 +1,6 @@
[package]
name = "panorama"
version = "0.1.0"
version = "0.0.1"
authors = ["Michael Zhang <mail@mzhang.io>"]
edition = "2018"
description = "A customizable personal information manager."

View file

@ -7,7 +7,7 @@ use futures::future::TryFutureExt;
use structopt::StructOpt;
use tokio::sync::{mpsc, oneshot};
use xdg::BaseDirectories;
use panorama::config::{spawn_config_watcher, MailConfig};
use panorama::{config::{spawn_config_watcher, MailConfig}, mail, ui};
#[derive(Debug, StructOpt)]
#[structopt(author, about)]