Move util module to server module

This commit is contained in:
Joscha 2023-08-07 14:51:26 +02:00
parent 6815c36f5b
commit 7635af88cd
9 changed files with 7 additions and 7 deletions

View file

@ -2,7 +2,7 @@ use sqlx::{Acquire, SqlitePool};
use time::OffsetDateTime;
use tracing::debug;
use crate::{somehow, util};
use crate::{server::util, somehow};
pub async fn update(db: &SqlitePool) -> somehow::Result<()> {
debug!("Updating queue");