chore: remove warnings
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-05-12 14:38:03 +02:00
parent 874045dca8
commit 9cb3296cec
5 changed files with 50 additions and 50 deletions

View File

@@ -3,7 +3,7 @@ use std::net::SocketAddr;
use axum::{extract::MatchedPath, http::Request, routing::get, Router};
use tower_http::trace::TraceLayer;
use crate::state::{SharedState, State};
use crate::state::SharedState;
async fn root() -> &'static str {
"Hello, hyperlog!"

View File

@@ -1,9 +1,9 @@
use std::{net::SocketAddr, sync::Arc};
use std::net::SocketAddr;
use axum::{extract::MatchedPath, http::Request, routing::get, Router};
use tower_http::trace::TraceLayer;
use crate::state::{SharedState, State};
use crate::state::SharedState;
async fn root() -> &'static str {
"Hello, hyperlog!"

View File

@@ -4,6 +4,7 @@ use crate::state::SharedState;
pub struct Querier {}
#[allow(dead_code, unused_variables)]
impl Querier {
pub fn new() -> Self {
Self {}