| 181 | pub async fn call(&self, pool: &PgPool) -> Result<FetchAccountInfoResult> { |
| 182 | #[derive(sqlx::FromRow, Clone, Debug)] |
| 183 | struct AccountInfo { |
| 184 | pub personal_prefixes: Vec<String>, |
| 185 | } |
| 186 | |
| 187 | let row = sqlx::query_as::<_, AccountInfo>( |
| 188 | "select personal_prefixes from users where id = $1::uuid", |
nothing calls this directly
no outgoing calls
no test coverage detected