Reformat imports properly
All checks were successful
Build and deploy / Build container and manifests (push) Successful in 5m43s

This commit is contained in:
2025-04-16 03:00:07 +02:00
parent 19ec3714a6
commit e21c9fd428
14 changed files with 78 additions and 77 deletions

View File

@@ -1,6 +1,7 @@
use std::sync::LazyLock;
use rand::{rngs::OsRng, seq::SliceRandom};
use rand::rngs::OsRng;
use rand::seq::SliceRandom;
pub fn get_animal_name() -> &'static str {
static ANIMALS: LazyLock<Vec<&'static str>> = LazyLock::new(|| {