···450450 case models.VanityStatRepositoryCount:
451451 query = `select count(id) from repos where did = ?`
452452 args = append(args, did)
453453+ case models.VanityStatStarCount:
454454+ query = `select count(id) from stars where did = ?`
455455+ args = append(args, did)
453456 }
454457455458 var result uint64