fix: elide lifetimes on Config
All checks were successful
Test / build (map[name:nightly]) (push) Successful in 5m30s
Test / build (map[name:stable]) (push) Successful in 5m57s

This commit is contained in:
Paul Campbell 2025-01-04 20:31:06 +00:00
parent daf560318d
commit 7ca81b1356

View file

@ -11,7 +11,7 @@ pub struct Config<'net, 'fs> {
auth_token: Option<String>,
issue_pattern: Regex,
}
impl<'net, 'fs> Config<'net, 'fs> {
impl Config<'_, '_> {
pub fn net(&self) -> &kxio::net::Net {
self.net
}