fix main function
This commit is contained in:
parent
e980c597f1
commit
a36f541429
3 changed files with 3 additions and 3 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -765,7 +765,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "panorama"
|
||||
version = "0.1.0"
|
||||
version = "0.0.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-trait",
|
||||
|
|
|
@ -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."
|
||||
|
|
|
@ -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)]
|
||||
|
|
Loading…
Reference in a new issue