diff --git a/crates/server-actor/src/lib.rs b/crates/server-actor/src/lib.rs index d55b7df..2bca343 100644 --- a/crates/server-actor/src/lib.rs +++ b/crates/server-actor/src/lib.rs @@ -14,7 +14,6 @@ use git_next_repo_actor::messages::NotifyUser; use git_next_repo_actor::{messages::CloneRepo, RepoActor}; use git_next_webhook_actor as webhook; use kxio::{fs::FileSystem, network::Network}; -use standardwebhooks::Webhook; use std::{ collections::BTreeMap, path::PathBuf, @@ -54,7 +53,6 @@ pub struct ServerActor { repository_factory: Box, sleep_duration: std::time::Duration, repo_actors: BTreeMap<(ForgeAlias, RepoAlias), Addr>, - webhook: Option, // testing message_log: Option>>>, @@ -80,7 +78,6 @@ impl ServerActor { repository_factory: repo, sleep_duration, repo_actors: BTreeMap::new(), - webhook: None, message_log: None, } }