rename uri mod to search

This commit is contained in:
yggverse 2025-01-15 08:45:22 +02:00
parent 254bf30ca0
commit 8f55c2c362
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
mod uri; mod search;
// Global dependencies // Global dependencies
use gtk::glib::{Uri, UriFlags}; use gtk::glib::{Uri, UriFlags};
@ -23,7 +23,7 @@ impl Request {
// Search request if the request could not be parsed as the valid [URI](https://docs.gtk.org/glib/struct.Uri.html) // Search request if the request could not be parsed as the valid [URI](https://docs.gtk.org/glib/struct.Uri.html)
// * @TODO implement DNS resolver lookup before assign this option // * @TODO implement DNS resolver lookup before assign this option
Err(_) => Self::Gemini { Err(_) => Self::Gemini {
uri: uri::tgls(request), uri: search::tgls(request),
}, },
} }
} }