diff --git a/cloudflare/src/endpoints/workers/delete_tail.rs b/cloudflare/src/endpoints/workers/delete_tail.rs index 430c5014..aea3f52a 100644 --- a/cloudflare/src/endpoints/workers/delete_tail.rs +++ b/cloudflare/src/endpoints/workers/delete_tail.rs @@ -1,5 +1,3 @@ -use super::WorkersTail; - use crate::framework::endpoint::{Endpoint, Method}; /// Delete Tail @@ -13,7 +11,7 @@ pub struct DeleteTail<'a> { pub tail_id: &'a str, } -impl<'a> Endpoint for DeleteTail<'a> { +impl<'a> Endpoint<()> for DeleteTail<'a> { fn method(&self) -> Method { Method::Delete }