encrypt/decrypt and db interaction
This commit is contained in:
@ -6,6 +6,7 @@
|
||||
use std::str::FromStr;
|
||||
|
||||
mod errors;
|
||||
mod clientinfo;
|
||||
mod ipc;
|
||||
mod state;
|
||||
mod server;
|
||||
@ -13,7 +14,7 @@ mod storage;
|
||||
|
||||
|
||||
fn main() {
|
||||
let initial_state = match state::AppState::new(state::SessionStatus::Locked, None) {
|
||||
let initial_state = match state::AppState::new() {
|
||||
Ok(state) => state,
|
||||
Err(e) => {eprintln!("{}", e); return;}
|
||||
};
|
||||
|
Reference in New Issue
Block a user