···420420 case models.VanityStatRepositoryCount:
421421 query = `select count(id) from repos where did = ?`
422422 args = append(args, did)
423423+ case models.VanityStatStarCount:
424424+ query = `select count(id) from stars where did = ?`
425425+ args = append(args, did)
423426 }
424427425428 var result uint64