Compare commits

..

2 commits

Author SHA1 Message Date
Imbus
6f69abe973 Allow dead code for hex_string, since its not used for now 2024-03-08 05:26:22 +01:00
Imbus
211490bd6f Simple robots.txt for SEO 2024-03-08 05:23:45 +01:00
2 changed files with 4 additions and 0 deletions

View file

@ -0,0 +1,3 @@
User-agent: *
Disallow: /settings/
Disallow: /public/

View file

@ -1,6 +1,7 @@
use rand::Rng;
// This will do for now
#[allow(dead_code)]
pub fn hex_string(length: usize) -> String {
let mut rng = rand::thread_rng();
let mut bytes = vec![0u8; length];