| 19 | use serde::{Deserialize, Deserializer}; |
| 20 | |
| 21 | pub trait SearchByTerm { |
| 22 | fn search_by_term(term: Option<String>) -> Self; |
| 23 | } |
| 24 | |
| 25 | pub trait BridgeUtils { |
| 26 | fn insert_value(entity: String, song: String) -> Self; |
nothing calls this directly
no outgoing calls
no test coverage detected