diff options
Diffstat (limited to 'src/modules/search.rs')
| -rw-r--r-- | src/modules/search.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/modules/search.rs b/src/modules/search.rs index 9ea235f..06f6152 100644 --- a/src/modules/search.rs +++ b/src/modules/search.rs @@ -24,8 +24,10 @@ pub fn module(router: &mut windmark::Router) { "/search", "A search engine for this Gemini capsule", Box::new(|context| { - let mut response = - String::from("# SEARCH\n\n=> /search?action=go Search!"); + let mut response = String::from( + "# SEARCH\n\n=> /search?action=go Search!\n=> /random I'm Feeling \ + Lucky", + ); if let Some(query) = context.url.query_pairs().next() { if query.0 == "action" && query.1 == "go" { |