features, cleanup and bug fixes #26

Merged
ben merged 30 commits from ben/Jobboerse:main into main 2022-06-09 17:36:55 +02:00
Showing only changes of commit 78e837ae8c - Show all commits

remove unnecessary qualification

Bennet Bleßmann 2022-05-28 00:48:38 +02:00 committed by Bennet Bleßmann
Signed by: ben
GPG key ID: 3BE1A1A3CBC3CF99

View file

@ -49,7 +49,7 @@ pub fn init_logger() -> Result<(), SetLoggerError> {
}
#[actix_web::main]
async fn main() -> std::result::Result<(), error::SeverInitializationError> {
async fn main() -> Result<(), error::SeverInitializationError> {
let _ = init_logger();
let result = run().await;
@ -59,7 +59,7 @@ async fn main() -> std::result::Result<(), error::SeverInitializationError> {
result
}
async fn run() -> std::result::Result<(), error::SeverInitializationError> {
async fn run() -> Result<(), error::SeverInitializationError> {
let server_config = ServerConfig::load().await?;
let mut listen_fd = ListenFd::from_env();