| 7 | use crate::redis; |
| 8 | |
| 9 | pub struct DeleteAccount { |
| 10 | pub actor: Arc<Viewer>, |
| 11 | pub user_id: String, |
| 12 | pub personal_repos: RepoIds, |
| 13 | } |
| 14 | |
| 15 | impl DeleteAccount { |
| 16 | pub fn call(&self, update: &Mutation) -> Result<()> { |
nothing calls this directly
no outgoing calls
no test coverage detected