From 7ca81b135642f7a8434160d43242f9bced34f8e6 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sat, 4 Jan 2025 20:31:06 +0000 Subject: [PATCH] fix: elide lifetimes on Config --- src/model/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/model/config.rs b/src/model/config.rs index a9569b4..4588502 100644 --- a/src/model/config.rs +++ b/src/model/config.rs @@ -11,7 +11,7 @@ pub struct Config<'net, 'fs> { auth_token: Option, issue_pattern: Regex, } -impl<'net, 'fs> Config<'net, 'fs> { +impl Config<'_, '_> { pub fn net(&self) -> &kxio::net::Net { self.net }