mirror of
https://github.com/minoplhy/chhoto-url.git
synced 2024-11-22 09:16:46 +00:00
chg: Added use std::io::Result
This commit is contained in:
parent
e742c0ab5e
commit
cdc3508a0c
@ -9,7 +9,7 @@ use actix_web::{
|
||||
App, Either, HttpResponse, HttpServer, Responder,
|
||||
};
|
||||
use rusqlite::Connection;
|
||||
use std::env;
|
||||
use std::{env, io::Result};
|
||||
mod auth;
|
||||
mod database;
|
||||
mod utils;
|
||||
@ -132,7 +132,7 @@ async fn delete_link(
|
||||
}
|
||||
|
||||
#[actix_web::main]
|
||||
async fn main() -> std::io::Result<()> {
|
||||
async fn main() -> Result<()> {
|
||||
env_logger::init_from_env(env_logger::Env::new().default_filter_or("warn"));
|
||||
|
||||
// Generate session key in runtime so that restart invalidates older logins
|
||||
|
Loading…
Reference in New Issue
Block a user