`Dependency` is the struct you implement injectable dependencies that will be called inside the function.
| 28 | ///* `Dependency` is the struct you implement injectable dependencies that will be called inside the function. |
| 29 | |
| 30 | pub struct Dependency; |
| 31 | |
| 32 | impl Dependency { |
| 33 | pub fn some_dependency(&self) -> fn(String, i32) -> ServiceResponse { |
nothing calls this directly
no outgoing calls
no test coverage detected