Build the redb key for a function: `"{tenant_id}:{name}"`.
(tenant_id: u64, name: &str)
| 128 | |
| 129 | /// Build the redb key for a function: `"{tenant_id}:{name}"`. |
| 130 | fn function_key(tenant_id: u64, name: &str) -> String { |
| 131 | format!("{tenant_id}:{name}") |
| 132 | } |
| 133 | |
| 134 | #[cfg(test)] |
| 135 | mod tests { |
no outgoing calls
no test coverage detected