11 lines
209 B
Go
11 lines
209 B
Go
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)
|
|
}
|