chore: cleanup

This commit is contained in:
əlemi 2024-05-03 04:12:15 +02:00
parent a0df9f8cc4
commit 7454da6525
Signed by: alemi
GPG key ID: A4895B84D311642C
2 changed files with 5 additions and 9 deletions

View file

@ -1,9 +1,9 @@
pub mod server;
pub mod model;
pub mod routes;
pub mod cli;
mod server;
mod model;
mod routes;
mod cli;
pub mod errors;
mod errors;
#[cfg(feature = "migrations")]
mod migrations;
@ -48,7 +48,6 @@ enum CliCommand {
/// apply database migrations
Migrate,
#[cfg(feature = "faker")]
/// generate fake user, note and activity
Faker{
/// how many fake statuses to insert for root user
@ -123,7 +122,6 @@ async fn main() {
migrations::Migrator::up(&db, None)
.await.expect("error applying migrations"),
#[cfg(feature = "faker")]
CliCommand::Faker { count } =>
cli::faker(&db, args.domain, count)
.await.expect("error creating fake entities"),

View file

@ -17,8 +17,6 @@ impl Default for Dispatcher {
}
impl Dispatcher {
pub fn new() -> Self { Dispatcher::default() }
pub fn spawn(&self, db: DatabaseConnection, domain: String, poll_interval: u64) -> JoinHandle<()> {
let waker = self.waker.subscribe();
tokio::spawn(async move {