Added bento :)

This commit is contained in:
2026-05-01 14:10:22 -06:00
parent fec14022cd
commit 9ea2cf8c34
17 changed files with 1304 additions and 253 deletions
+10
View File
@@ -0,0 +1,10 @@
package ui
import (
"github.com/atridad/wrapped-cli/pkg/models"
"github.com/atridad/wrapped-cli/pkg/reports"
)
func ExportReport(stats *models.UserStats) (string, error) {
return reports.SaveReport(stats)
}