profileShare

rasmusjy / tasteprint

Read-only snapshot

No repository description.

main default branch 169 files Expires Sep 13, 2026, 9:06 AM
TasteStats.java 202 bytes
1 package com.tasteprint.progress;
2
3 public record TasteStats(
4 long totalTastings,
5 int uniqueDishes,
6 int countriesTasted,
7 int regionsTasted,
8 int worldCoverage
9 ) {
10 }
11